Write and Burn Data to DVD/DVD-Rw from shell prompt
Most DVD burner tools is running under GUI such as KDE and Gnome.
For a few people such as system administrator, writing file into DVD is a must, especially when you starting to automatically your system such as automatic backup system into DVD.
In order to do that you need a package called “dvd+rw-tools”
Debian installation:
# apt-get install […]
Connect Your Blackberry using UBUNTU
One of the blackberry feature is Bluetooth, and we can use it to transfer file.Here is the steps :
Activate your Blackberry bluetooth and set it to Discoverable Mode ( You will see ‘waiting for connection’ message on the blackberry.
On Ubuntu, open terminal akses root, you can use # sudo su to always work as root.
Scan […]
Advertisement
More about Linux, Hostings, Website, Server, Microsoft and various advertisements will appear below.Fight the spammer with Disable Open Relay
Yes lets fight with spam.
These days spammers are in love with my server, damn.
I just realize it, when I keep getting email bounced from the recipient guardian, such as barracuda.
When I check and recheck, the mail server is running as open relay server.
Here is what I did to protect.
Firstable, I already have Qmail + Vpopmail […]
Using rar in Linux
Q : How can I open and extract rar file ?
Rar files are compressed file, you need to decompressed it or unrar it.
There is linux software called unrar, able to read , open and extract rar files.
$ wget http://www.rarlab.com/rar/rarlinux-3.6.0.tar.gz
Untar the downloaded file
$ tar -zxvf rarlinux-3.6.0.tar.gz
Both unrar and rar commands are located in rar sub-directory. Just […]
How to setting up Static IpAddress
To Setting up static ip address is very easy, but sometime we forget how to do it.
Here’s the step, just incase you forgot.
# vi /etc/networking/interfaces
auto lo eth0
iface lo inet loopback
iface eth0 inet static
address xxx.xxx.xxx.xxx(enter your ip here)
netmask xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx(enter gateway ip here)
# vi /etc/resolv.conf
nameserver xxx.xxx.xxx.xxx(enter your dns server ip)
nameserver xxx.xxx.xxx.xxx(enter your alt dns server ip)
# […]