Author: Binny V A
A philosopher programmer who specializes in backend development and stoicism.
Building an RPM from a Spec File
June 18, 2008
Use this command to build an RPM if you have a Spec File rpmbuild -ba SPEC_FILE
Play MPlayer in full Screen
June 14, 2008
Play the video in full screen using mplayer. mplayer -zoom -x 1024 -y 768 -fs -framedrop FILE
Rsync via SSH tunnel
June 13, 2008
Rsync via SSH tunnel rsync -rogpav -e ssh –delete /home/binnyva 192168.0.30:/var/Backup/home
Exclude Removable Partitions from a ‘find’ Search
June 10, 2008
Search files with ‘.rpm’ extension ignoring removable partitions as cdrom, pen-drive, etc. find / -xdev -name \*.rpm
Installing Rails
June 6, 2008
You can install Rails in a Fedora system with these commands… yum -y install ruby ruby-devel ruby-irb ruby-libs ruby-rdoc ruby-ri…
Get the Plain Text Version of a Web Page
June 2, 2008
This command fetches a web page, converts it to text and shows it. lynx -dump http://www.example.com/
Sed Regular Expression Range
May 31, 2008
Print the contents of a file from a given regular expression to another sed -n ‘/start/,/end/ p’ file This will…
Recent Comments