Common Apps
Telegram
Windows: https://www.microsoft.com/store/productId/9NZTWSQNTD0S?ocid=pdpshare
Ubuntu: Store
WhatsApp
Windows: https://www.microsoft.com/store/productId/9NKSQGP7F2NH?ocid=pdpshare
Ubuntu: Store
Adobe Reader
Windows: https://apps.microsoft.com/store/detail/XPDP273C0XHQH2?ocid=pdpshare
Ubuntu: Not needed
Arduino
Windows: https://www.microsoft.com/store/productId/9NBLGGH4RSD8?ocid=pdpshare
Ubuntu: Store
Zoom
Windows: Download Center for Zoom Apps and Plugins | Zoom
Ubuntu: Store
Webex: Download the Webex desktop and mobile apps
Gimp
Windows: https://apps.microsoft.com/store/detail/XPDM27W10192Q0?ocid=pdpshare
Ubuntu: Store
Inkscape
Windows: https://www.microsoft.com/store/productId/9PD9BHGLFC7H?ocid=pdpshare
Ubuntu: Store
Owncloud
Windows: The Desktop App for efficient syncing – ownCloud
Ubuntu: Install package owncloud-client
Plex Client
Windows: https://apps.microsoft.com/store/detail/XP9CDQW6ML4NQN?ocid=pdpshare
Ubuntu: Store
Surfshark VPN
Windows: https://apps.microsoft.com/store/detail/XP9KN848DQPDK9?ocid=pdpshare
Ubuntu: https://surfshark.com/download/linux
Utils
Balena Etcher (To create USB bootable drivers)
Windows: balenaEtcher – Flash OS images to SD cards & USB drives
Hand Break
Windows: HandBrake: Downloads
Ubuntu: https://flathub.org/apps/fr.handbrake.ghb
MakeMKV
Windows: https://www.makemkv.com/
Ubuntu: https://forum.makemkv.com/forum/viewtopic.php?f=3&t=224
Key: MakeMKV is free while in beta – www.makemkv.com
OBS Studio
Windows: https://apps.microsoft.com/store/detail/XPFFH613W8V6LV?ocid=pdpshare
Ubuntu: https://obsproject.com/download#linux
Development
Generate SSH key
# Ed25519 algorithm
ssh-keygen -t ed25519 -C christopher.guzman@gmail.com
# 4096 bits
ssh-keygen -t rsa -b 4096 -C christopher.guzman@gmail.com
Python
Windows: Download Python | Python.org
Ubuntu: Not needed
NodeJS
Windows: Node.js — Download Node.js® (nodejs.org)
Ubuntu: https://nodejs.org/en/download/package-manager
Golang
Windows: Download and install – The Go Programming Language
Ubuntu: https://go.dev/doc/install
Git
Windows: Git – Downloading Package (git-scm.com)
Ubuntu: sudo apt install git
Docker
Windows:
Ubuntu: https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
sudo usermod -aG docker $USER
newgrp docker
VS Code
Windows: https://apps.microsoft.com/store/detail/XP9KHM4BK9FZ7Q?ocid=pdpshare
Ubuntu: Store
MongoDB Compass: MongoDB Compass Download (GUI) | MongoDB
Postman
Windows: Download Postman | Get Started for Free
Ubuntu: Store
Raspberry Pi Imager: Raspberry Pi OS – Raspberry Pi
Ubuntu: sudo apt install rpi-imager
Kubectl
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x kubectl && mkdir -p ~/.local/bin && mv ./kubectl ~/.local/bin/kubectl
sudo cp ~/.local/bin/kubectl /usr/bin
vim ~/.bashrc
# Add:
export PATH="~/.local/bin:$PATH"
Helm
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && \
chmod 700 get_helm.sh && \
./get_helm.sh
Copying kubeconfig to local machine
scp christopher@master:~/.kube/config ~/.kube/config
sed -ie "s/127.0.0.1/192.168.0.0000/g" ~/.kube/config #Replace 0000 with actual ip number
Git configurations and visuals
git config --global user.email c@gmail.com
git config --global user.name "Christopher"
git config --global core.editor "vim"
select-editor
Gitprompt
git clone https://github.com/magicmonty/bash-git-prompt.git ~/.bash-git-prompt --depth=1
Add to ~/.bashrc
if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then
GIT_PROMPT_ONLY_IN_REPO=1
source $HOME/.bash-git-prompt/gitprompt.sh
fi
Reload bash
. ~/.bashrc
Zenbook Pro Duo
Pro Duo 15 OLED (UX582, 11th Gen Intel®)
Drivers: ZenBook Pro Duo 15 OLED (UX582, 11th Gen Intel) (asus.com)
Intel® Driver & Support Assistant (Intel® DSA): Intel® Driver & Support Assistant
Nvidia App: Download NVIDIA App for Gamers and Creators | NVIDIA
Enable Audio for internal speakers
Source: https://askubuntu.com/questions/1420976/no-audio-on-asus-vivobook-m7400q-with-realtek-alc294a
Create script
sudo apt install alsa-tools
vim /home/christopher/enable-asus-audio.sh && sudo chmod +x /home/christopher/enable-asus-audio.sh
Add:
#!/bin/sh
sudo hda-verb /dev/snd/hwC0D0 0x20 0x500 0xf
sudo hda-verb /dev/snd/hwC0D0 0x20 0x400 0x7774
sudo hda-verb /dev/snd/hwC0D0 0x20 0x500 0x45
sudo hda-verb /dev/snd/hwC0D0 0x20 0x400 0x5289
sudo hda-verb /dev/snd/hwC1D0 0x20 0x500 0xf
sudo hda-verb /dev/snd/hwC1D0 0x20 0x400 0x7774
sudo hda-verb /dev/snd/hwC1D0 0x20 0x500 0x45
sudo hda-verb /dev/snd/hwC1D0 0x20 0x400 0x5289
sudo hda-verb /dev/snd/hwC2D0 0x20 0x500 0xf
sudo hda-verb /dev/snd/hwC2D0 0x20 0x400 0x7774
sudo hda-verb /dev/snd/hwC2D0 0x20 0x500 0x45
sudo hda-verb /dev/snd/hwC2D0 0x20 0x400 0x5289
sudo hda-verb /dev/snd/hwC3D0 0x20 0x500 0xf
sudo hda-verb /dev/snd/hwC3D0 0x20 0x400 0x7774
sudo hda-verb /dev/snd/hwC3D0 0x20 0x500 0x45
sudo hda-verb /dev/snd/hwC3D0 0x20 0x400 0x5289
sudo hda-verb /dev/snd/hwC4D0 0x20 0x500 0xf
sudo hda-verb /dev/snd/hwC4D0 0x20 0x400 0x7774
sudo hda-verb /dev/snd/hwC4D0 0x20 0x500 0x45
sudo hda-verb /dev/snd/hwC4D0 0x20 0x400 0x5289
Add entry to crontab
sudo crontab -e && sudo service cron restart
Add
@reboot sleep 5 && sh /home/christopher/enable-asus-audio.sh
Windows Codecs
AV1 Video Extension: https://www.microsoft.com/store/productId/9MVZQVXJBQ9V?ocid=pdpshare
MPEG-2 Video Extension: https://www.microsoft.com/store/productId/9N95Q1ZZPMH4?ocid=pdpshare
HEVC Video Extension: https://www.microsoft.com/store/productId/9NMZLZ57R3T7?ocid=pdpshare
Windows Apps
Power DVD 22: From file
Filmora: From file
Netflix: https://www.microsoft.com/store/productId/9WZDNCRFJ3TJ?ocid=pdpshare
Disney: https://www.microsoft.com/store/productId/9NXQXXLFST89?ocid=pdpshare
Prime: https://www.microsoft.com/store/productId/9P6RC76MSMMJ?ocid=pdpshare
Samsung DeX: https://www.samsung.com/global/download/SamsungDeXWin/
Splash Player: Download – Splash 2.0 – The ultimate free HD video player (mirillis.com)
Steam: Steam, The Ultimate Online Game Platform (steampowered.com)
Spotify: https://www.microsoft.com/store/productId/9NCBCSZSJRSB?ocid=pdpshare
Tidal: https://www.microsoft.com/store/productId/9NNCB5BS59PH?ocid=pdpshare
TikTok: https://www.microsoft.com/store/productId/9NH2GPH4JZS4?ocid=pdpshare
Samsung App: https://www.microsoft.com/store/productId/9P98T77876KZ?ocid=pdpshare
Windows Configurations
Windows Games
Reckless Racing Ultimate: https://www.microsoft.com/store/productId/9WZDNCRFHV3K?ocid=pdpshare
Ubuntu Apps
MS Edge: https://www.microsoft.com/en-us/edge/download?form=MA13FJ
VLC: https://www.videolan.org/vlc/download-debian.html
Missing packages:
sudo snap install curl && \
sudo apt install vim make cmake curl htop ffmpeg flatpak alsa-tools git rpi-imager cifs-utils