First you need to add the repo to the source list. Either do this through Synaptic or manually editing the file at “/etc/apt/sources.list”
deb http://archive.offensive-security.com pwnsauce main microverse macroverse restricted universe multiverse
Now that the source is added you need to import the archive gpg key.
wget -q http://archive.offensive-security.com/backtrack.gpg -O- | sudo apt-key add -
Thats basically it. Now the Back Track software should show in the Synaptic Package Manager.
For...
Posts Tagged ‘ubuntu’
Change IP info using config file in Linux (Debian/Ubuntu)
Posted by John Sorensen on September 16th, 2009
This is just an emple of a the interfaces file which holds the ifconfig information.
Location: /etc/network/interfaces
Static IP (example)
#######################
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 208.88.34.106
netmask 255.255.255.248
broadcast 208.88.34.111
network 208.88.34.104
gateway 208.88.34.110
#######################
DHCP (example)
#######################
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet...


Posted in
Tags: