Skip to content

Tag: linux

Volume creation MAPR

I am pretty new to MapR and I have a task about creating a MapR volume. I used this command to create the volume but I get this error: Before running the command I created this path ‘/MyCluster/apps/application_logs/node1’ using mkdir : Does anyone know why I get this error and if someone can help…

Creating file and writing to it in one single command [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack …

Is pipe in linux asynchronous or not?

I thought that when i running below commands Linux process will be when sleep 10 is end -> sleep 2 (when sleep 2 is end)-> sleep 5 that’s i thought But in Linux bash sleep 10, sleep 2, sleep 5 are in ps same time Standard output of sleep 10 process will be redirected to sleep 5’s process But…