1
0
This repository has been archived on 2025-04-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ubuntu-install/ubuntu_install.md
2020-12-28 21:49:10 -05:00

60 lines
1.8 KiB
Markdown

# Moving to Ubuntu ...
### After first boot!
### Keyboard Shortcuts
- Close Window: Super+Q
- Home Folder: Super+E
### Add Third-Party App Repos!
*VSCode*<br>
`sudo sh -c 'echo "deb https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'`
*NordVPN*<br>
`sudo sh -c 'echo "deb https://repo.nordvpn.com//deb/nordvpn/debian stable main" > /etc/apt/sources.list.d/nordvpn.list'`
*Syncthing*<br>
`sudo sh -c 'echo "deb https://apt.syncthing.net/ syncthing stable" > /etc/apt/sources.list.d/syncthing.list'`
### Update
`sudo apt update -y && sudo apt upgrade -y && sudo apt autoremove -y`
### Applications from Package Manager!
`sudo apt install neofetch pv ubuntu-restricted-extras tmux tilix apt-transport-https git curl wget cifs-utils timeshift gparted gnome-tweaks gnome-software-plugin-snap gnome-software-plugin-flatpak gnome-shell-extensions glances nordvpn code syncthing`
### Applications from the Snap Store!
`sudo snap install spotify bitwarden`
### Application from the Web!
*Joplin*<br>
`wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash`
### Set Applications Defaults
`sudo update-alternatives --config x-terminal-emulator`
### Custom Mounts
*Add a Mount for Network Share*<br>
`sudo mkdir /mnt/userShare && sudo chown shaun:shaun /mnt/userShare`
*Add Network Share to fstab*<br>
```
# Mount network shared folder on SETLOCK-SERVER (smb://192.168.2.151/userShare) to a user-accessible directory.
//192.168.2.151/UserShare /mnt/userShare cifs credentials=/home/shaun/.smbcredentials,uid=1000,gid=1000,nofail,noperm,x-gvfs-show,x-gvfs-name=SETLOCK-SERVER 0 0
```
### Other Things
- Set Dark Theme
- Check that Google and Nextcloud Accounts have linked.
- Make sure a useful `~/.mozilla/firefox` has been copied over.