Tag Archives: linux commands

TAR command

Sharecreate: tar -cvf mystuff.tar mystuff/ tar -czvf mystuff.tgz mystuff/ extracting: tar -xvf mystuff.tar tar -xzvf mystuff.tgz testing/viewing: tar -tvf mystuff.tar tar -tzvf mystuff.tgz Note that .tgz is the same thing as .tar.gz Tar “tars up” a bunch of files into … Continue reading

Posted in apache, linux, server, ssh | Tagged , , , | Leave a comment

linux command lines

ShareSome command lines I’ve learned from friends. du -bsx * | sort -n =  will list folders/files along with it’s sizes and sorted asc ls -lst = will list files/folder with dates, modes or in details pwd = will show … Continue reading

Posted in anything under the moonlight, server | Tagged , , , | Leave a comment