Getting System Information
uname -a
Linux luria 3.10.0-514.2.2.el7.x86_64 \#1 SMP Tue Dec 6 23:06:41 UTC 2016 x86_64 x86_64 x86_64 GNU/Linuxfile hello.txt
hello.txt: ASCII text
file my_directory.zip
my_directory.zip: Zip archive data, at least v2.0 to extract# Prints information on every running process on the system
ps aux
# Pipe the output into grep and search for every process being run by a specific user
ps aux | grep "asoberan"
asoberan 6342 0.0 0.0 115716 2372 pts/124 Ss May02 0:00 /bin/bash
asoberan 7855 0.0 0.0 302216 4668 pts/124 Sl+ 15:25 0:00 srun --pty bash
asoberan 7873 0.0 0.0 96680 768 pts/124 S+ 15:25 0:00 srun --pty bashLast updated
Was this helpful?
