-
Archives
- January 2012
- December 2011
- September 2011
- August 2011
- June 2011
- January 2011
- December 2010
- November 2010
- October 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- January 2009
- November 2008
- September 2008
- August 2008
- July 2008
- March 2008
- February 2008
- January 2008
-
Meta
Tag Archives: Linux
How to list all users on a Linux machine?
cat /etc/passwd | cut -d”:” -f1
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
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