Difference between revisions of "Ubuntu 16.04 Server"
(→Installing FOG: Made the updating commands more through.) |
|||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
= Settings = | = Settings = | ||
− | set a hostname, recommeded name is <font color="red"> | + | set a hostname, recommeded name is <font color="red">fogserver</font>, however you can set this as anything you want. |
set a username, recommended name is YOUR first name, or "admin". '''Do not use "fog"'''! | set a username, recommended name is YOUR first name, or "admin". '''Do not use "fog"'''! | ||
Line 48: | Line 48: | ||
apt-get -y autoclean | apt-get -y autoclean | ||
apt-get -y autoremove | apt-get -y autoremove | ||
− | apt-get install git | + | apt-get -y install git |
git clone https://github.com/FOGProject/fogproject.git /root/fogproject | git clone https://github.com/FOGProject/fogproject.git /root/fogproject | ||
cd /root/fogproject/bin | cd /root/fogproject/bin | ||
./installfog.sh | ./installfog.sh | ||
</pre> | </pre> |
Latest revision as of 15:55, 4 September 2017
Article under construction, Written for FOG 1.3.0
See also: Ubuntu 16.04
Settings
set a hostname, recommeded name is fogserver, however you can set this as anything you want.
set a username, recommended name is YOUR first name, or "admin". Do not use "fog"!
Set a password for this account.
verify password.
Encryption - optional, but strongly not recommended.
Set a timezone because FOG Scheduled Tasks are dependent on the system time being correct.
Partitioning
External Video Link:
Ubuntu 16 04 Server - Optimal FOG Partitioning
Video:
Other Settings
no automatic updates (optional).
set "standard system utilities" to not be installed (optional, but this tutorial is aimed to be as minimal as possible).
set "OpenSSH server" to be installed (optional but required for remote management. Can be installed later).
Installing FOG
- Access the terminal
- Become root with sudo -i
- Issue the below commands.
apt-get -y update apt-get -y dist-upgrade apt-get -y autoclean apt-get -y autoremove apt-get -y install git git clone https://github.com/FOGProject/fogproject.git /root/fogproject cd /root/fogproject/bin ./installfog.sh