1
0

Update installation markdown.

This commit is contained in:
Shaun Setlock
2020-12-28 21:49:10 -05:00
parent 8a0d5473bb
commit c3aa81ec32
2 changed files with 55 additions and 46 deletions

View File

@@ -25,38 +25,42 @@
<body class="vscode-body vscode-light">
<h1 id="moving-to-ubuntu-">Moving to Ubuntu ...</h1>
<h3 id="after-first-boot">After first boot!</h3>
<h4 id="keyboard-shortcuts">Keyboard Shortcuts</h4>
<h3 id="keyboard-shortcuts">Keyboard Shortcuts</h3>
<ul>
<li>Close Window: Super+Q</li>
<li>Home Folder: Super+E</li>
</ul>
<h4 id="update">Update</h4>
<p><code>sudo apt update -y &amp;&amp; sudo apt upgrade -y</code></p>
<h3 id="applications-from-the-archives">Applications from the Archives!</h3>
<p><code>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</code></p>
<h3 id="set-applications-defaults">Set Applications Defaults</h3>
<p><code>sudo update-alternatives --config x-terminal-emulator</code></p>
<h3 id="add-third-party-app-repos">Add Third-Party App Repos!</h3>
<p><em>VSCode</em><br></p>
<p><code>sudo sh -c 'echo &quot;deb https://packages.microsoft.com/repos/code stable main&quot; &gt; /etc/apt/sources.list.d/vscode.list'</code></p>
<p><em>NordVPN</em><br></p>
<p><code>sudo sh -c 'echo &quot;deb https://repo.nordvpn.com//deb/nordvpn/debian stable main&quot; &gt; /etc/apt/sources.list.d/nordvpn.list'</code></p>
<p><em>Syncthing</em><br></p>
<p><code>sudo sh -c 'echo &quot;deb https://apt.syncthing.net/ syncthing stable&quot; &gt; /etc/apt/sources.list.d/syncthing.list'</code></p>
<h3 id="update">Update</h3>
<p><code>sudo apt update -y &amp;&amp; sudo apt upgrade -y &amp;&amp; sudo apt autoremove -y</code></p>
<h3 id="applications-from-package-manager">Applications from Package Manager!</h3>
<p><code>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</code></p>
<h3 id="applications-from-the-snap-store">Applications from the Snap Store!</h3>
<p><code>sudo snap install spotify bitwarden</code></p>
<h3 id="application-from-the-web">Application from the Web!</h3>
<p><em>Joplin</em><br></p>
<p><code>wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash</code></p>
<p><em>VSCode</em><br></p>
<p><code>cd ~/Downloads</code><br></p>
<p><code>wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor &gt; packages.microsoft.gpg</code><br></p>
<p><code>sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/</code><br></p>
<p><code>sudo sh -c 'echo &quot;deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main&quot; &gt; /etc/apt/sources.list.d/vscode.list'</code><br></p>
<p><em>NordVPN</em><br></p>
<p><code>cd ~/Downloads</code><br></p>
<p><code>bash &lt;(wget -qO - https://downloads.nordcdn.com/apps/linux/install.sh)</code><br></p>
<h3 id="snap-store">Snap Store!</h3>
<p><em>Bitwarden</em><br>
<em>Spotify</em><br></p>
<h3 id="set-applications-defaults">Set Applications Defaults</h3>
<p><code>sudo update-alternatives --config x-terminal-emulator</code></p>
<h3 id="custom-mounts">Custom Mounts</h3>
<p><em>Add a Mount for Network Share</em><br></p>
<p><code>sudo mkdir /mnt/userShare &amp;&amp; sudo chown shaun:shaun /mnt/userShare</code><br></p>
<p><code>sudo mkdir /mnt/userShare &amp;&amp; sudo chown shaun:shaun /mnt/userShare</code></p>
<p><em>Add Network Share to fstab</em><br></p>
<pre><code><code><div># 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
</div></code></code></pre>
<h3 id="other-things">Other Things</h3>
<ul>
<li>Set Dark Theme</li>
<li>Check that Google and Nextcloud Accounts have linked.</li>
<li>Make sure a useful <code>~/.mozilla/firefox</code> has been copied over.</li>
</ul>
</body>
</html>

View File

@@ -2,54 +2,59 @@
### After first boot!
#### Keyboard Shortcuts
### Keyboard Shortcuts
- Close Window: Super+Q
- Home Folder: Super+E
#### Update
### Add Third-Party App Repos!
`sudo apt update -y && sudo apt upgrade -y`
*VSCode*<br>
### Applications from the Archives!
`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`
`sudo sh -c 'echo "deb https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'`
### Set Applications Defaults
*NordVPN*<br>
`sudo update-alternatives --config x-terminal-emulator`
`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`
*VSCode*<br>
### Set Applications Defaults
`cd ~/Downloads`<br>
`wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg`<br>
`sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/`<br>
`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'`<br>
*NordVPN*<br>
`cd ~/Downloads`<br>
`bash <(wget -qO - https://downloads.nordcdn.com/apps/linux/install.sh)`<br>
### Snap Store!
*Bitwarden*<br>
*Spotify*<br>
`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`<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.