Ubuntu22/Quick Reference
From r00tedvw.com wiki
(Difference between revisions)
Line 17: | Line 17: | ||
==KeePassXC== | ==KeePassXC== | ||
<nowiki>~$ sudo apt install -y keepassxc</nowiki> | <nowiki>~$ sudo apt install -y keepassxc</nowiki> | ||
+ | |||
+ | ==Visual Studio Code== | ||
+ | <nowiki>~$ sudo apt install -y software-properties-common apt-transport-https wget | ||
+ | ~$ wget -O- https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor | sudo tee /usr/share/keyrings/vscode.gpg | ||
+ | ~$ echo deb [arch=amd64 signed-by=/usr/share/keyrings/vscode.gpg] https://packages.microsoft.com/repos/vscode stable main | sudo tee /etc/apt/sources.list.d/vscode.list | ||
+ | ~$ sudo apt update | ||
+ | ~$ sudo apt install -y code</nowiki> |
Revision as of 23:12, 20 August 2022
Quick Reference
Contents |
Base packages
DisplayLink Driver
Make sure secure boot is NOT enabled. It will prevent EDVI DKMS from being installed.
~$ sudo apt update -y && sudo apt install -y dkms libdrm-dev ~$ wget https://www.synaptics.com/sites/default/files/exe_files/2022-08/DisplayLink%20USB%20Graphics%20Software%20for%20Ubuntu5.6.1-EXE.zip ~$ sudo ~/displaylink-driver-5.3.0.xx.run
Chrome
~$ sudo apt update && sudo apt upgrade -y ~$ sudo apt install -y software-properties-common apt-transport-https wget ca-certificates gnupg2 ubuntu-keyring ~$ sudo wget -O- https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg ~$ echo deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main | sudo tee /etc/apt/sources.list.d/google-chrome.list ~$ sudo apt update ~$ sudo apt install -y google-chrome-stable
KeePassXC
~$ sudo apt install -y keepassxc
Visual Studio Code
~$ sudo apt install -y software-properties-common apt-transport-https wget ~$ wget -O- https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor | sudo tee /usr/share/keyrings/vscode.gpg ~$ echo deb [arch=amd64 signed-by=/usr/share/keyrings/vscode.gpg] https://packages.microsoft.com/repos/vscode stable main | sudo tee /etc/apt/sources.list.d/vscode.list ~$ sudo apt update ~$ sudo apt install -y code