Command: site change <username> flags +h
Month: May 2013
glftpd add user with no ratio
Commands: site adduser <username> <password> site addip <username> *@* site change <username> ratio 0
Change Ubuntu root password without getting “Give root password for maintenance”
Reboot machine; Press ‘Esc’ to get to the GRUB menu; Select the image; Press ‘e’ to edit; Change the kernel line from ‘ro’ to ‘rw […]
Install and configure wordpress with multiple hosts
See the previous post about install and configure apache2 with multiplue hosts Download and unzip wordpress: cd /srv/www/brianwilliams.pro sudo wget http://wordpress.org/latest.tar.gz sudo tar -zxvf latest.tar.gz […]
Install and configure apache2 with multiple hosts
Assuming Apache mod_rewrite module is enabled: sudo a2enmod rewrite Create the needed website directories: mkdir /var/www/brianwilliams.pro mkdir /var/www/allaboutyoushelby.com Configure Apache: sudo vi /etc/apache2/sites-available/brianwilliams.pro <VirtualHost *:80> […]
Change Ubuntu from DHCP to static IP
Open the network interfaces file: sudo vi /etc/network/interfaces DHCP configuration: auto eth0 iface eth0 inet dhcp Static configuration: auto eth0 iface eth0 inet static address 192.168.20.56 […]