Just few steps for installation.
1. Create a 10Gb empty file with at /home/xen_image (change either size and location to fit your needs):
dd if=/dev/zero of=/home/xen_image bs=1M count=10240
2. We are installing Ubuntu 12.10 i386, actually you can install any other version of Ubuntu, you just need to download appropriate initrd.gz vmlinuz xm-debian.cfg, just browse folders from the link below:
http://nl.archive.ubuntu.com/ubuntu/dists/quantal/main/installer-i386/current/images/netboot-xen/netboot/xen/
For example Ubuntu 12.04 has codename precise, so installtion files for x64 version are in http://nl.archive.ubuntu.com/ubuntu/dists/precise/main/installer-amd64/current/images/netboot-xen/netboot/xen/
ok, now we need to download 3 files:
wget http://nl.archive.ubuntu.com/ubuntu/dists/quantal/main/installer-i386/current/images/netboot-xen/netboot/xen/initrd.gz
wget http://nl.archive.ubuntu.com/ubuntu/dists/quantal/main/installer-i386/current/images/netboot-xen/netboot/xen/vmlinuz
wget http://nl.archive.ubuntu.com/ubuntu/dists/quantal/main/installer-i386/current/images/netboot-xen/netboot/xen/xm-debian.cfg
Note: you should be in /
3. Edit xm-debian.cfg file and modify memory name vcpus vif disk
Note: recommended value for vif : vif = [”, ‘bridge=xenbr1’]
To install ProFTP, its so easy on Centos:
y| yum install proftpd
Start ProFTP:
/etc/init.d/proftpd start
To add ProFTP to autorun:
chkconfig proftpd on
Add FTP account:
useradd USERNAME -g nobody -d /home/PATH -s /sbin/nologin
setting password
passwd USERNAME
Delete FTP account:
userdel USERNAME
Good luck =)
What is NFS and why do you need it?
Network File System (NFS) is a network file system protocol originally developed by Sun Microsystems in 1984, allowing a user on a client computer to access files over a network in a manner similar to how local storage is accessed.
For example if you have 2 servers, you can setup 1 server for work and another one setup as a backup server, or just use its disk space, there are a lot of combinations.
More »