diff --git a/ubuntu_install.html b/ubuntu_install.html new file mode 100644 index 0000000..a9d4051 --- /dev/null +++ b/ubuntu_install.html @@ -0,0 +1,53 @@ + + + + + Moving to Ubuntu ... + + + + + + + + + + + +

Moving to Ubuntu ...

+

After first boot!

+

Applications from the Archives!

+

sudo apt install neofetch pv ubuntu-restricted-extras tmux tilix apt-transport-https git curl wget cifs-utils timeshift gparted

+

Application from the Web!

+

Joplin

+

wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash

+

VSCode

+

cd ~/Downloads

+

wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg

+

sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/

+

sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'

+

NordVPN

+

cd ~/Downloads

+

bash <(wget -qO - https://downloads.nordcdn.com/apps/linux/install.sh)

+

Snap Store!

+

Bitwarden
+Spotify

+

Custom Mounts

+

Add a Mount for Network Share

+

sudo mkdir /mnt/userShare && sudo chown shaun:shaun /mnt/userShare

+

Add Network Share to fstab

+
# 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 +
+ + + \ No newline at end of file diff --git a/ubuntu_install.md b/ubuntu_install.md new file mode 100644 index 0000000..7cd3f21 --- /dev/null +++ b/ubuntu_install.md @@ -0,0 +1,40 @@ +# Moving to Ubuntu ... + +### After first boot! + +### Applications from the Archives! +`sudo apt install neofetch pv ubuntu-restricted-extras tmux tilix apt-transport-https git curl wget cifs-utils timeshift gparted` +### Application from the Web! +*Joplin*
+ +`wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash` + +*VSCode*
+ +`cd ~/Downloads`
+ +`wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg`
+ +`sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/`
+ +`sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'`
+ +*NordVPN*
+ +`cd ~/Downloads`
+ +`bash <(wget -qO - https://downloads.nordcdn.com/apps/linux/install.sh)`
+ +### Snap Store! +*Bitwarden*
+*Spotify*
+### Custom Mounts +*Add a Mount for Network Share*
+ +`sudo mkdir /mnt/userShare && sudo chown shaun:shaun /mnt/userShare`
+ +*Add Network Share to fstab*
+``` +# 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 +``` \ No newline at end of file