Tag: Linux
Update an Installed RPM Package
November 4, 2008
Upgrade a rpm package only if it is already installed rpm -F package.rpm
Batch Resize Image
October 31, 2008
Resize all JPG Files to 800×600 convert -sample 800×600 *.jpg output_file_name
Import RPM Key
October 26, 2008
Import public-key digital signature rpm –import /media/cdrom/RPM-GPG-KEY
Optimized Grep Searching
October 23, 2008
Grep that searches recursively, ignores binary files, and doesn’t look inside Subversion hidden folders. grep -Ir –exclude=”*\.svn*” “pattern” *
Linux Command to Generate a Password
October 22, 2008
Linux command to create a random password head -n1 /dev/urandom|md5sum -b|head -c 5
Do Md5 check on CD/DVD/HDD
October 4, 2008
Perform an md5sum on a device, like a CD dd if=/dev/hdc | md5sum
Convert Bin/Cue Images to ISO Image using Linux Command
October 2, 2008
You can use this command to convert a Bin/Cue image to an ISO image in a linux system. You may…
Recent Comments