Difference between revisions of "Installing Debian 12.9.0"

From Applied Optics Wiki
Jump to: navigation, search
Line 135: Line 135:
 
sudo apt install thunderbird gimp inkscape texlive libreoffice -y
 
sudo apt install thunderbird gimp inkscape texlive libreoffice -y
 
</pre>
 
</pre>
==Installing Teams==
 
  
- E.g. download from https://www.microsoft.com/en-us/microsoft-teams/download-app#allDevicesSection
+
* '''Firefox''' - should already be installed without SNAP
 
+
* '''MS Teams''' - there ''was'' a Debian release of MS Teams but this was retired - your best bet is to use MS Teams in your web browser [https://www.microsoft.com/en-gb/microsoft-teams/log-in]
- 'cd' to Downloads or wherever the .deb as gone, ensure it is executable:
+
* '''MS Office''' - use the online version of Outlook/Word/Powerpoint/OneDrive [https://m365.cloud.microsoft/]
<code>sudo dpkg -i teams_XX.deb</code> (where 'XX' is the rest of the .deb filename)
 
 
 
- If you get dependency errors then:
 
<code>sudo apt --fix-broken install</code> and repeat above
 
 
 
 
 
Microsoft doesnt support linux at the moment so use teams-for-linux
 
 
 
 
 
<code>
 
sudo mkdir -p /etc/apt/keyrings
 
 
 
sudo wget -qO /etc/apt/keyrings/teams-for-linux.asc https://repo.teamsforlinux.de/teams-for-linux.asc
 
 
 
echo "deb [signed-by=/etc/apt/keyrings/teams-for-linux.asc arch=$(dpkg --print-architecture)] https://repo.teamsforlinux.de/debian/ stable main" | sudo tee /etc/apt/sources.list.d/teams-for-linux-packages.list
 
 
 
sudo apt update
 
 
 
sudo apt install teams-for-linux
 
</code>
 
  
 
==Installing Matlab==
 
==Installing Matlab==

Revision as of 18:05, 17 March 2025

Pre-installation checklist

  • Download debian-12.9.0-amd64-netinst.iso - if this link is broken find another one! Mount as boot iso on a USB stick, e.g. you can use RUFUS on windows to do this or dd on linux. Skip if someone has provided a pre-configured stick to you.
  • List of installed software by you and others who use the PC and backup locally (i.e. on USB drives and not on network drives) - skip if new PC
  • Make note of your computer name/hostname and IP address - talk to Rikesh or Matt if new PC
  • Change boot order from BIOS to boot from [USB HDD] or [USB CD-ROM] depending on what turns up - very relevant for new PCs - talk to Rikesh or Matt

Installation screens

I. Boot setup

  • Interrupt the normal booting procedure for the computer - common keys for entering BIOS or boot menu are Enter/F1/F2/F11/F12/Del. If on a Lenovo PC press Enter when the Lenovo boot splash screen turns up, enter the BIOS Setup Utility menu by pressing F1 and arrow to the Startup sub-menu. Enter into the Primary Boot Sequence; + the USB drive to the top of the queue. Save and exit with F10.
  • If you cannot see the boot or setup menu, you may need to plug your screen into the GPU output rather than the motherboard output (or vice versa).

II. Install menu

  • The Debian splash screen should show up, select install Graphical install

1. Language

  • Select language English, United Kingdom, and British English - it will now do an initial harware/network configuration (1min)
  • The USB may fail as the installer thinks the drive is CD drive - if this happens try moving the USB drive to a port on the back of the PC

2. Configure network

  • The network autoconfiguration will fail - this is fine. Continue and select Configure network manually
  • Enter your PC's IP address (see earlier)
  • Enter 255.255.255.0 for the netmask
  • Enter 128.243.74.254 for the gateway
  • Enter 128.243.21.19 for the nameservers (DNS)
  • Enter your computer name as the hostname (this may be filled in for you already!)
  • Enter applied_optics as the domain name
  • Do not set a root password - just leave blank and click continue
  • Enter local_hostname for the user's name and username
  • You should already been advised what the user password should be, if not ask!
  • The install will then start looking for disks

3. Formatting Disks

  • Warning this will wipe Windows!
  • For partitioning select Manual
  • Double-click your primary hard drive which should firstly be an NVMe drive (e.g. /dev/nvme01)
  • Select 'Yes' for wiping and do the same for any other hard drives you want to wipe - make sure you DO NOT wipe your USB drive
  • Select the FREE SPACE partition under your first hard drive and 'Create a new partition' - the Automatically partition the free space option creates sensible partitions but if you require something more specialist you should already know how to set this up
  • Select All files in one partiion - you should end up with a bootable partition in #1 (~500MB), your root / directory in #2, and swap in #3 (~1.0GB),
  • Partition your second/additional hard drives to wherever you want/need to (i.e. /eee) - this time Create a new partition' - set the partition size to max - to change the mount point enter manually /eee, click on Done setting up' and click on Finish partitioning and write changes to disk - select Yes to write changes to disks,
  • The installation will begin. (2mins)

4. Complete installation

  • To configure the package manager, select United Kingdom, select the top option for the software repository (e.g. deb.debian.org), and leave the proxy entry blank
  • Software and updates will start installing (1min)
  • For software popularity context select No,
  • Unselect Debian desktop environment and GNOME Flashback - select KDE Plasma and SSH server
  • It will then continue installing (5mins)
  • Click continue to reboot (you can pull out the USB drive after it has restarted)

Nvidia drivers

You might notice that once you log in (using local_[hostname] and password from earlier, the framerate will tank - this is because the default nouveau drivers does not work well with your Nvidia card and newer Wayland display protocol. You have two options:

1. Before login, change the Desktop Session in bottom left to Plasma (X11) (not recommended for long term)

2. Install Nvidia drivers - follow the steps below for this:

  • Firstly you must turn off Secure boot in the bios or enrol your system key [1] - if you do not, you will get a 'Failed to start Nvidia persistence daemon' error at startup
  • Enter the commands below to install the drivers:
sudo apt update 
sudo apt upgrade 
sudo apt install software-properties-common -y
sudo add-apt-repository main contrib non-free non-free-firmware
sudo apt update
sudo apt upgrade
sudo apt install linux-headers-amd64 nvidia-kernel-dkms -y
  • The install will complain about nouveau, click ok to replace - continue with the following commands:
echo 'options nvidia-drm modeset=1' | sudo tee -a /etc/modprobe.d/nvidia-options.conf > /dev/null
echo 'options nvidia NVreg_PreserveVideoMemoryAllocations=1' | sudo tee -a /etc/modprobe.d/nvidia-options.conf > /dev/null
sudo reboot
  • You should now be able to use the default Wayland protocol for the display

Getting on the OPG network

echo 'applied_optics' | sudo tee -a /etc/defaultdomain > /dev/null
echo 'domain applied_optics server 128.243.74.2' | sudo tee -a /etc/yp.conf > /dev/null
echo 'ypserver 128.243.74.2' | sudo tee -a /etc/yp.conf > /dev/null
sudo sed -i 's/passwd: /passwd: compat nis /g' /etc/nsswitch.conf 
sudo sed -i 's/group: /group: compat nis /g' /etc/nsswitch.conf 
sudo sed -i 's/shadow: /shadow: compat /g' /etc/nsswitch.conf 
sudo sed -i 's/hosts: /hosts: nis /g' /etc/nsswitch.conf 
sudo sed -i 's/networks: /networks: nis dns /g' /etc/nsswitch.conf 
sudo sed -i 's/services: /services: nis /g' /etc/nsswitch.conf 
echo 'automount: nis files' | sudo tee -a /etc/nsswitch.conf > /dev/null
echo 'aliases: nis files' | sudo tee -a /etc/nsswitch.conf > /dev/null
echo 'order hosts, bind' | sudo tee -a /etc/host.conf  > /dev/null
echo '+::::::' | sudo tee -a /etc/passwd  > /dev/null
echo '+:::' | sudo tee -a /etc/group  > /dev/null
sudo sed -i '/^# Allow members /a\%scan ALL=(root) ALL' /etc/sudoers
sudo rm -R /home
sudo mkdir /home
sudo chmod 777 /home
sudo systemctl enable rpcbind --now
sudo systemctl enable nscd --now
sudo systemctl enable ypbind --now
sudo systemctl enable autofs --now
  • Reboot manually and login as yourself
  • Contact Rikesh to let him if you have successfully logged in (and confirm network access on the server side) or if you have failed

Clean up and additional software

  • REQUIRED: Run the following for clean :
sudo userdel -r local_curtain
sudo apt install fail2ban -y
sudo systemctl enable fail2ban --now
sudo systemctl restart fail2ban
  • Semi-optional: Install some other useful software that may come in handy in the future..
sudo apt install tcsh tmux ksh cmake git libgtk-3-dev libgtk2.0-dev default-jdk remmina xrdp detox libncurses5 -y
sudo apt install thunderbird gimp inkscape texlive libreoffice -y
  • Firefox - should already be installed without SNAP
  • MS Teams - there was a Debian release of MS Teams but this was retired - your best bet is to use MS Teams in your web browser [2]
  • MS Office - use the online version of Outlook/Word/Powerpoint/OneDrive [3]

Installing Matlab

use mathworks account based on Uni email to log in download linux zip for the version you want.

At the system terminal do not use dolphin to do this as it breaks everything, unzip the matlab_R2023b_glnxa64.zip installer archive to the matlab_R2023b_glnxa64 directory by entering: unzip matlab_R2023b_glnxa64.zip -d matlab_R2023b_glnxa64

The installer fails to launch as root, as it doesn't have access to the graphical user interface that you need for installation. so do:

xhost +SI:localuser:root

sudo -H ./install

When prompted by the installer, specify the folder for installation. this should be in /eee/MATLAB/R20XYa (what ever the release is)

xhost -SI:localuser:root This allows the root user to access the running X server, launches the installer, and then removes the root user from accessing the X server.

Printers

The install script and drivers are in /home/share/printers/

run on local machine to install



Finish

The installation of Kubuntu 22.04 and all the useful softwares should be done at this point beyond those which require manual installs such as MATLAB. Ask for help if you find any problems.