Posts tagged http://www.ubuntu.com

Ubuntu LAMP on virtual PC Part 9

Ubuntu LAMP on virtual PC Part 9

This is a video on how to build on Virtual PC ( http://www.microsoft.com/downloads/de… ) an Ubuntu ( http://www.ubuntu.com ) LAMP server. I also use Putty ( http://www.chiark.greenend.org.uk/~sg… ) to download a program called webmin ( http://www.webmin.com/ ) I would recommend checking the website for the latest version number. The commands I enter are:

https://IPADDRESSOFTHEMACHINE:10000

Ubuntu LAMP on virtual PC Part 8

Ubuntu LAMP on virtual PC Part 8

This is a video on how to build on Virtual PC ( http://www.microsoft.com/downloads/de… ) an Ubuntu ( http://www.ubuntu.com ) LAMP server. I also use Putty ( http://www.chiark.greenend.org.uk/~sg… ) to download a program called webmin ( http://www.webmin.com/ ) I would recommend checking the website for the latest version number. The commands I enter are:

sudo apt-get install vsftpd
sudo vim /etc/vsftpd.conf
local_enable=YES
write_enable=YES
local_umask=0002
sudo /etc/init.s/vsftpd restart
cd /var/www
umask 0002
sudo chmod -R 775 /var/www
sudo chown YOURUSERNAME:www-data /var/www
sudo chmod g+s /var/www
cd ~
pwd
ln -s /var/www website

Ubuntu LAMP on virtual PC Part 7

Ubuntu LAMP on virtual PC Part 7

This is a video on how to build on Virtual PC ( http://www.microsoft.com/downloads/de… ) an Ubuntu ( http://www.ubuntu.com ) LAMP server. I also use Putty ( http://www.chiark.greenend.org.uk/~sg… ) to download a program called webmin ( http://www.webmin.com/ ) I would recommend checking the website for the latest version number. The commands I enter are:

ifconfig
sudo vim /etc/network/interfaces
#the primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.253
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
sudo /etc/init.d/networking restart