This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| deb12:instolympus2 [2025/07/12 13:26] – Bernard Condrau | deb12:instolympus2 [2026/05/18 13:31] (current) – [Root and SSH access] Bernard Condrau | ||
|---|---|---|---|
| Line 35: | Line 35: | ||
| - Install [[deb9: | - Install [[deb9: | ||
| + | ===== Check Network ===== | ||
| + | * Get gateway address:< | ||
| + | * Get network interface:< | ||
| ===== Virtualbox 7.1 ===== | ===== Virtualbox 7.1 ===== | ||
| - | - wget -q https:// | + | - Import the GPG key: '' |
| - | - sudo sh -c 'echo "deb [arch=amd64] http:// | + | - Add the repository: ''< |
| - | - sudo apt update | + | - Update package lists: '' |
| - | - sudo apt install virtualbox-7.1 | + | - Install VirtualBox: '' |
| - | - sudo apt install virtualbox-ext-pack | + | |
| + | ===== LVM ===== | ||
| + | - Install the lvm2 package: < | ||
| + | - Enable and start the LVM service: < | ||
| + | sudo systemctl start lvm2-lvmetad</ | ||
| + | |||
| + | ===== LUKS ===== | ||
| + | - Install:< | ||
| + | |||
| + | ===== OpenVPN ===== | ||
| + | - Install:< | ||
| ===== Connect existing data volumes ===== | ===== Connect existing data volumes ===== | ||
| - Mount LVM volumes, first check filesystem type< | - Mount LVM volumes, first check filesystem type< | ||
| Line 58: | Line 70: | ||
| ===== Autostart Apps ===== | ===== Autostart Apps ===== | ||
| - | | + | |
| + | * [[deb10: | ||
| ===== Remove Applications ===== | ===== Remove Applications ===== | ||
| ==== LibreOffice ==== | ==== LibreOffice ==== | ||
| Line 65: | Line 77: | ||
| sudo apt-get clean | sudo apt-get clean | ||
| sudo apt-get autoremove | sudo apt-get autoremove | ||
| - | |||
| - | ===== Firmware ===== | ||
| - | You might first need to add the firmware repositories to get acceptable graphics output. For example, you are installing on a machine with an old graphics card, but a new monitor. In one of my installs the XFCE desktop will boot, but the screen resolution is off, and the fonts are hardly readable. LXQt desktop will not boot into a graphics desktop at all, the machine drops into a terminal during boot. | ||
| - | * Add to or create file / | ||
| - | # use buster for Debian 10 or stretch for Debian 9 | ||
| - | deb http:// | ||
| - | deb-src http:// | ||
| - | * Save and exit | ||
| - | * Update apt and install the firmware< | ||
| - | sudo apt install firmware-linux firmware-linux-nonfree</ | ||
| - | * Check display hardware and install hardware specific firmware (see below)< | ||
| - | * You also might need to reset the display settings. Look for a folder within ~/.config, for example xfce4, and rename it from an ssh shell when logged out from the graphical desktop, then login again. | ||
| - | |||
| - | ==== AMD Graphic Cards ==== | ||
| - | * Install AMD Drivers< | ||
| - | * [[https:// | ||
| - | * [[https:// | ||
| - | * [[https:// | ||
| - | |||
| - | ==== nVidia Graphic Cards ==== | ||
| - | * Install nVidia drivers< | ||
| - | * [[https:// | ||
| - | |||
| - | ==== Realtek ==== | ||
| - | * Install Realtek NIC drivers< | ||
| - | |||
| - | ==== Aquantia ==== | ||
| - | * Aquantia AQC107 firmware is not in the repositories | ||
| - | * Download the driver from [[https:// | ||
| - | * Unpack, then configure the adapter defaults, and build the driver code< | ||
| - | mv Linux ~/ | ||
| - | cd ~/ | ||
| - | vim aq_cfg.h | ||
| - | #define AQ_CFG_IS_LRO_DEF 0U /* change from 1U to 0U */ | ||
| - | sudo apt-get install build-essential gawk dkms | ||
| - | sudo apt-get install linux-headers-`uname -r` | ||
| - | cd ~/ | ||
| - | sudo ./dkms.sh install</ | ||
| - | * Verify the driver location and that the driver is loaded< | ||
| - | lspci -v</ | ||
| - | * Uninstall the driver:< | ||
| - | * [[https:// | ||
| ===== Exclude package from upgrade ===== | ===== Exclude package from upgrade ===== | ||
| Sometimes it is helpful to exclude a package from upgrading. Virtualbox, for example, requires the GUI on the client to be used after version upgrade to upgrade and install the guest addtions, so sometimes it's better to not upgrade the package while you don't have physical access to the client. You can exclude and include with the following commands:< | Sometimes it is helpful to exclude a package from upgrading. Virtualbox, for example, requires the GUI on the client to be used after version upgrade to upgrade and install the guest addtions, so sometimes it's better to not upgrade the package while you don't have physical access to the client. You can exclude and include with the following commands:< | ||
| sudo apt-mark unhold virtualbox-6.1</ | sudo apt-mark unhold virtualbox-6.1</ | ||
| + | |||
| + | ===== Change host name ===== | ||
| + | * '' | ||
| + | * Update ''/ | ||
| + | * Update ''/ | ||
| + | * either:< | ||
| + | sudo invoke-rc.d networking force-reload</ | ||
| + | * or:< | ||
| ===== Links ===== | ===== Links ===== | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| - | * [[https:// | ||