How to extract .deb or .rpm in Linux

The best and the easier way to extract .deb files to Linux is to download
the alien binary package and convert the .deb file to rpm and make your life
easier.

download
tar -zxvf alien_8.66.tar.gz
su root
perl MakeIfile.pl
make
make install
alien -r file.deb (extract the .deb file to rpm file)
rpm -i file.rpm (install the rpm file nice and easy)
or vice versa
alien -k [...]