Lightweight Desktop-environment for Ubuntu-server:
http://www.htpcbeginner.com/lightweight-desktop-environment-for-ubuntu-server/
Install GUI on Ubuntu-12.04 server:
http://www.ubuntugeek.com/how-to-install-gui-on-ubuntu-12-04-precise-server.html
Change Ubuntu-server from DHCP to a static ip address
http://www.howtogeek.com/howto/ubuntu/change-ubuntu-server-from-dhcp-to-a-static-ip-address/
One More: http://askubuntu.com/questions/342705/how-to-set-a-static-ip-address
Important:
http://askubuntu.com/questions/151440/important-things-to-do-after-installing-ubuntu-server
http://n00tz.net/2008/07/vlc-media-server-ubuntu-hardy/
http://www.videolan.org/doc/vlc-user-guide/en/ch04.html
http://www.videolan.org/doc/play-howto/en/ch04.html
To temporarily configure an IP address, you can use the ifconfig command in the following manner. Just modify the IP address and subnet mask to match your network requirements.
To configure a default gateway, you can use the route command in the following manner. Modify the default gateway address to match your network requirements.
--------
http://www.htpcbeginner.com/lightweight-desktop-environment-for-ubuntu-server/
Install GUI on Ubuntu-12.04 server:
http://www.ubuntugeek.com/how-to-install-gui-on-ubuntu-12-04-precise-server.html
Change Ubuntu-server from DHCP to a static ip address
http://www.howtogeek.com/howto/ubuntu/change-ubuntu-server-from-dhcp-to-a-static-ip-address/
One More: http://askubuntu.com/questions/342705/how-to-set-a-static-ip-address
Important:
http://askubuntu.com/questions/151440/important-things-to-do-after-installing-ubuntu-server
http://n00tz.net/2008/07/vlc-media-server-ubuntu-hardy/
http://www.videolan.org/doc/vlc-user-guide/en/ch04.html
http://www.videolan.org/doc/play-howto/en/ch04.html
Temporary IP Address Assignment
For temporary network configurations, you can use standard commands such as ip, ifconfig and route, which are also found on most other GNU/Linux operating systems. These commands allow you to configure settings which take effect immediately, however they are not persistent and will be lost after a reboot.To temporarily configure an IP address, you can use the ifconfig command in the following manner. Just modify the IP address and subnet mask to match your network requirements.
sudo ifconfig eth0 10.0.0.100 netmask 255.255.255.0
To configure a default gateway, you can use the route command in the following manner. Modify the default gateway address to match your network requirements.
sudo route add default gw 10.0.0.1 eth0
(For More: https://help.ubuntu.com/10.04/serverguide/network-configuration.html)
--------
sudo vi /etc/network/interfaces
ReplyDeleteFor the primary interface, which is usually eth0, you will see these lines:
auto eth0
iface eth0 inet dhcp
As you can see, it’s using DHCP right now. We are going to change dhcp to static, and then there are a number of options that should be added below it. Obviously you’d customize this to your network.
auto eth0
iface eth0 inet static
address 10.29.46.236
netmask 255.255.255.0
network 10.29.46.0
broadcast 10.29.46.255
gateway 10.29.46.1
Now we’ll need to add in the DNS settings by editing the resolv.conf file:
sudo vi /etc/resolv.conf
On the line ‘name server xxx.xxx.xxx.xxx’ replace the x with the IP of your name server. (You can do ifconfig /all to find out what they are)
Now we’ll just need to restart the networking components:
sudo /etc/init.d/networking restart
http://askubuntu.com/questions/382389/how-do-i-install-libreoffice-on-10-04-server
ReplyDelete