Use GZIP in terminal February 28, 2013 Hello, Getting strainght to point to use gzip on terimal you need to run this command: tar -cvzf "nameuwanttogive.gz" nameoffiletocompress cheers! Read more
How to find what version of Solaris are you running August 21, 2012 In the shell(terminal), type the following command uname -r or to find more details about the OS you can also type cat /etc/release Read more
Find file with size greater than 200kb January 27, 2012 Hello, So you ask how do you find a file with size greater than 200kb, haha! I laugh because it was a stupid command, so the way it works is find . -type f -size +200k where k is kilo bytes. Read more