A Blog about technology, linux, peer2peer, cool new downloads and software development.

Monday, April 28, 2008

How to configure dhcp server on ubuntu tutorial

Commands :

$ sudo -s

# apt-get install dhcp3-server

# cd /etc/default/

# cp dhcp3-server dhcp3-server.bak

# vim dhcp3-server

Change :

INTERFACES=""

to :


INTERFACES="eth0"
Save,
Coomands :


# cd ../dhcp3/

# cp dhcpd.conf dhcpd.conf.bak

# vim dhcpd.conf


Change :


# 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;
...


To :


# 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;

Change :


# 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;
#}

To :



subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.100 192.168.0.200;
option domain-name-servers 208.67.222.222, 208.67.220.220;
option domain-name "XXX.dyndns.org";
option routers 192.168.0.1;
option broadcast-address 192.168.0.255;
default-lease-time 600;
max-lease-time 7200;
}


Save,


Coomands :



# /etc/init.d/dhcp3-server restart

Saturday, April 26, 2008

downloads update

MyPhoneExplorer 1.6.7

Nokia PC Suite 6.86.9.3

VirtuaWin 4.0.1

save2pc 3.27

ChrisTV Lite 5.20

Total Commander 7.03

Total Commander CD/DVD Burning Plugin (TCBurner)

WinMerge 2.9.9.1 Experimental

SpeedFan 4.34

DriveGLEAM

HddLed Indicator 1.86

Recuva 1.13.304

foobar2000 0.9.5.2

Friday, April 25, 2008

updating ubuntu to new version

    1. Install update-manager-core if it is not already installed:

      sudo apt-get install update-manager-core
    2. Edit /etc/update-manager/release-upgrades and set:

      Prompt=normal
    3. Launch the upgrade tool:

      sudo do-release-upgrade
      sudo apt-get clean

Sunday, April 20, 2008

Saturday, April 19, 2008

Best eMule (mod)

Since the development of the official emule client has slowed very much as of lately, the best replacement is emule-extreme mod :

http://www.xtreme-mod.net/

 

Rating of all the emule mods : http://www.emule-mods.de/

The best $TERM

The $TERM that works the best in regular shell and screen is :

export TERM=linux