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.html
2020-12-21 22:37:23 -05:00

62 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Moving to Ubuntu &period;&period;&period;</title>
<style>
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Microsoft/vscode/extensions/markdown-language-features/media/markdown.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Microsoft/vscode/extensions/markdown-language-features/media/highlight.css">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif;
font-size: 14px;
line-height: 1.6;
}
</style>
<style>
.task-list-item { list-style-type: none; } .task-list-item-checkbox { margin-left: -20px; vertical-align: middle; }
</style>
</head>
<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>
<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="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="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><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>
</body>
</html>