1. download webmin
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.490_all.deb
2. prepare dependencies
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
3. install webmin
sudo dpkg --install webmin_1.490_all.deb
4. login webmin
https://192.168.1.6:10000/
md5sum filename
Goto find correct video card and OS
http://www.nvidia.com/Download/index.aspx?lang=en-us
Download driver (Shell Source Code)
-
Install Driver in Ubuntu
-
Crrl-Alt-F1 (or F2) in shell mode
-
Stop Xwindows
sudo /ect/init.d/gdm stop
-
run install shell
sudo sh /path/NVIDIA.somedriver.run
- Return back windows
sudo gdm
- Windows XP Professional computer, remote desktop connect to the console session.
- Remote desktop to a Windows Server 2003 computer, the default is to start a new session.
Connect to the console session of a Windows Server 2003 computer :
command-line: mstsc /console
Windows Vista remote desktop client:
mstsc /admin
Reference: http://weblogs.asp.net/jeffwids/archive/2005/12/14/remote-desktop-to-console-session-on-windows-server-2003.aspx
An ISO format that is supported by many software vendors.
For cross a disc image in the BIN format, it is much easier to convert to the standard ISO format.
bchunk (BinChunker)
sudo aptitude install bchunk
Bchunk Example
bchunk IMAGE.bin IMAGE.cue IMAGE.iso
reference by
http://www.ubuntugeek.com/how-to-convert-bincue-files-to-iso-in-ubuntu.html
Finding the IP address assigned to a computer is very simple.
The NBTSTAT command. The syntax for doing so is as follows:
NBTSTAT -a <computername>
To find the computer name associated with a specific IP address.
NBTSTAT -A <ipaddress>
To you the computer name that is currently associated with the IP address you have specified.
Ping <computername>
will reply ip address
SyncToy
With new sources of files coming from every direction (such as digital cameras, e-mail, cell phones, portable media players, camcorders, PDAs, and laptops), SyncToy can help you copy, move, and synchronize different directories.
Tweak UI
This PowerToy gives you access to system settings that are not exposed in the Windows XP default user interface, including mouse settings, Explorer settings, taskbar settings, and more.
Version 2.10 requires Windows XP Service Pack 1 or Windows Server 2003.
Download URL:
http://www.microsoft.com/windowsxp/Downloads/powertoys/Xppowertoys.mspx
Set targate :
IP address range: 192.168.1.101 to 192.168.1.150
Subnet Mask: 255.255.255.0
DNS Servers: 198.235.216.131, 198.235.216.130
Domains: my.com
Gateway Address: 192.168.1.100
install
sudo apt-get install dhcp3-server
Config dhcp3-server
sudo /etc/default/dhcp3-server
Find this line
… INTERFACES=”"
Replace with the following line
INTERFACES=”eth0″
Config dhcpd.conf
sudo nano /etc/dhcp3/dhcpd.conf
Close default config
Find this section
…
# option definitions common to all supported networks…
option domain-name “example.org”;
option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600;
max-lease-time 7200;
…
Replace with the following lines
# option definitions common to all supported networks…
#option domain-name “example.org”;
#option domain-name-servers ns1.example.org, ns2.example.org;
#default-lease-time 600;
#max-lease-time 7200;
work config
Find this section
…
# A slightly different configuration for an internal subnet.
#subnet 10.5.5.0 netmask 255.255.255.224 {
# range 10.5.5.26 10.5.5.30;
# option domain-name-servers ns1.internal.example.org;
# option domain-name “internal.example.org”;
# option routers 10.5.5.1;
# option broadcast-address 10.5.5.31;
# default-lease-time 600;
# max-lease-time 7200;
#}
…
Replace with the following lines
# A slightly different configuration for an internal subnet.
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.101 192.168.1.150;
option domain-name-servers 198.235.216.131, 198.235.216.130;
option domain-name “my.com”;
option routers 192.168.1.100;
option broadcast-address 192.168.1.255;
default-lease-time 600;
max-lease-time 7200;
}
Restart Server
sudo /etc/init.d/dhcp3-server restart
Reference:
http://www.ubuntugeek.com/how-to-install-and-configure-dhcp-server-in-ubuntu-server.html
http://www.linuxtopia.org/online_books/system_administration_books/ubuntu_starter_guide/ch07s04.html