Fedora Installation and iSCSI Target Setup 1. Install Fedora from DVD DL Download latest version from Fedora Server Download Burn DVD DL using the Windows workstation (Apple mac-mini) Plug external DVD DL reader. Mac-mini 015 has a faulty USB port. Plug wired network cable Load Fedora disc, boot Enable root account and SSH for root Add user afberendsen Disk layout with fedora_fedora-root using all space available 2. Initial Setup Set up hostname: sudo hostnamectl set-hostname <host-name> sudo reboot Check prompt Update ~/.bashrc : export HISTCONTROL=ignoredups:erasedups # no duplicate entries export HISTSIZE=100000 # big big history export HISTFILESIZE=100000 # big big history export HISTTIMEFORMAT="[%F %H:%M:%S %a] " export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND" export QUOTING_STYLE=literal shopt -s histappend Upd...