Below are the steps to enable connection via cable:
- Edit /etc/hosts, add newname so it become something like this:
127.0.1.1 debbie newname
- Set hostname to newname by using this command:
hostname newname
- Remove oldname from /etc/hosts so it become:
127.0.1.1 newname
- Find out the name of the network card interface (usually it's eth0) by using:
ls /sys/class/net
- If there is a NetworkManager installed, you need to stop it by using the script from the usual location /etc/init.d, then you'll also need to remove it by using apt-get. But if there is a NetworkManager installed, why would you need to use command line to connect to the LAN?
- Next, bring up the connection by using:
sudo ip link set dev eth0 down sudo dhclient eth0
If there is not a network manager available, then need to install it by using:
apt-get install network-manager-gnome
or
apt-get install network-manager-kde
By default, linux has ipv6 installed. To disable it:
run:
echo net.ipv6.conf.all.disable_ipv6=1 > /etc/sysctl.d/disableipv6.conf
and then modify /etc/modprobe.d/aliases.conf, add these lines:
alias net-10 ipv6 off
alias ipv6 off
And yes, time goes by so quickly when you are working on the computer (have you noticed that?).
I lose track of time while working on these things I looked at the clock and then realized that it's already 1AM, OMG!!
Next step would be trying to:
- Installing GNOME (will be very easy) *
Make brightness auto-adjustment works. Though by following the steps from Debian's wiki, the brightness up and down keys are working properly.- Assigning MAC keys to their original purpose.
- Finding out how to backup the entire debian, for future
Auto backup for essential folders when an external HDD is attached and last backup was older than 1 week-> it might be disturbing that every time you connect an external HDD, it backs up. **- Create a script to backup everything
* To KDE fans: no offense, this is just a matter of taste. I might or might not be ending up liking KDE, but before that I still would like to see GNOME.
** Well, lets admit that when your HDD is working fine, this kind of thing seems too exaggerating. But when it's dead, you'll be sorry like I was when you didn't have it.
No comments:
Post a Comment