Tag Archives: Linux

How to list all users on a Linux machine?

 cat /etc/passwd | cut -d”:” -f1

Posted in Linux, Linux Administration | Tagged , | Leave a comment

Create thumbnails from image in one command

In Linux, issue this command $ convert -thumbnail 200 INPUT_FILE.png OUTPUT_FILE.png To convert into another image type, just change the output file extension — as simple as that! $ convert -thumbnail 200 INPUT_FILE.png OUTPUT_FILE.jpg For more information please visit Cyberciti.biz … Continue reading

Posted in Graphics, Linux | Tagged , , | Leave a comment

Tired of entering you svn password everytime?

I have set up svn repositories on dedicated Linux server of my clients but the constant typing of svn password everytime I access the repository makes life for a developer less livable. Until I found the solution… So here it … Continue reading

Posted in Freelancing, Programming, subversion | Tagged , , , | 7 Comments