Category: Command Line

RPM Installation without Dependencies

Install a rpm package ignoring dependencies requests rpm -ivh –nodeeps package.rpm

Convent Video to 3gp(mobile) format

This command uses ffmpeg to convert a regular video into 3gp format thats used in mobile phones ffmpeg -i input_video.mp4…

whois – Find Who Owns A Domain

Find out the ownership details of a domain using this simple command… whois openjs.com

Identify Channel SCSI

Scan bus to identify the drives cdrecord –scanbus

DHCP Mode Activation

active interface ‘eth0’ in dhcp mode dhclient eth0

Monitor the Result of a Command

Monitor the result of some command by looping it an infinite while loop. To quit, press Ctrl+C. Thanks to Sreenath…

Do Md5 check on CD/DVD/HDD

Perform an md5sum on a device, like a CD dd if=/dev/hdc | md5sum

Convert Bin/Cue Images to ISO Image using Linux Command

You can use this command to convert a Bin/Cue image to an ISO image in a linux system. You may…

Packet Sniffing

Configure ‘eth0’ in promiscuous mode to gather packets (sniffing) ifconfig eth0 promisc

Remove Deb Package

Remove a deb package from the system dpkg -r package_name