Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kianenigma/74211862c5ff8b287f3d4311f3877811 to your computer and use it in GitHub Desktop.
Save kianenigma/74211862c5ff8b287f3d4311f3877811 to your computer and use it in GitHub Desktop.
Notes on multiple attempts to install Linux Mint 19 on Razer Blade Stealth 2019
Dual booted with windown boot laoder via:
- 100GB / root exe4 journal file system
- 16GB Swap (might be too much --only used over heavy load)
Initial system had the following (annoying issues) + Fixes
- No drivers work properly: Mouse is laggy + wifi is super slow
- Update the kernel immediately
- Install Nvidia Drivers. Ultimately, `nvidia-prime` should work and give you the option to select between drivers
- Go to driver manager and switch to Nvidia (probably requires kernel update in the previous step).
- Downloads and sets up the latest driver
- Closing the lid issue: In the link below
- Pretty damn hot
- TPL is the best so far. Tempratures droped without a noticable performance issue + battery life is better.
- Read this. Not for 2019 but still some good tips:
- https://github.com/rolandguelle/razer-blade-stealth-linux
@kianenigma
Copy link
Author

kianenigma commented Mar 11, 2019

attempt for a single sh script

Resources:

sudo apt-get update
sudp apt-get upgrade

# Brave (Taken from here https://brave-browser.readthedocs.io/en/latest/installing-brave.html#linux)
curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -
source /etc/os-release
echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ $UBUNTU_CODENAME main" | sudo tee /etc/apt/sources.list.d/brave-browser-release-${UBUNTU_CODENAME}.list
sudo apt update
sudo apt install brave-browser brave-keyring

# Vscode 

# Sublime 

# TPL 

# Nvidia Drivers 

# Utils
apt-get install libc-dev nano bmon htop gcc cmake zsh gnome-tweaks

# Oh-My-Zsh

# Telegram Desktop 

# Node and npm
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
sudo apt-get install -y nodejs
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn


# Synapse (spotlight-like app luncher for linux)

# Rust and Cargo
curl https://sh.rustup.rs -sSf | sh

# exa (a better ls)
cargo install exa

# Pip fix 
sudo apt-get install python-pip
sudo apt-get install python-setuptools
sudo apt-get install python-dev

# Gnome mail/calender

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment