https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#0
- Security boot disable (change this in BIOS, for MSI computers reboot system and press delete a couple of times before the OS is loaded)
- Possible problem: Screen freezing while installing
- Reboot system
- Go to the Install Ubuntu option (BUT DONT PRESS ENTER)
- Press e
- Find the line that starts with linux then add modprobe.blacklist=nouveau after quiet splash.
- Choose a Wifi Network and install third party software and updates
- Once the installation is done, remove the pendrive and reboot system
- Select Ubuntu at GRUB (you may need to repeat the modprobe.blacklist=nouveau step if the screen freezes again).
- Make sure security boot is disable
- Access command line (ctrl+alt+ F1,F2,F3...F??)
sudo add-apt-repository ppa:graphics-drivers/ppa sudo apt update # You can change this driver to whatever version suits you best :) sudo apt install nvidia-driver-396 sudo reboot
https://docs.anaconda.com/anaconda/install/linux
https://medium.com/@taylordenouden/installing-tensorflow-gpu-on-ubuntu-18-04-89a142325138
conda create -n torch python=3.6
conda install -y pytorch=0.4 torchvision cuda90 -c pytorch
conda install -y pytorch=0.4 torchvision -c pytorch conda install cuda80 -c soumith
python -c 'import torch; print(torch.rand(2,3).cuda())'
https://www.tensorflow.org/install/install_linux#installing_with_anaconda
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64
python -c 'from tensorflow.python.client import device_lib; device_lib.list_local_devices()'
output:
2018-06-11 11:32:18.954198: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1053] Created TensorFlow device (/device:GPU:0 with ...)
- Open the app "Nvidia X Server Settings"
- Go to "PRIME profiles" and select the Intel (Power Saving Mode).
- Then restart or log out your user session and log in again.
This way you'll be using the Intel integrated graphics card and the battery will last way more. To use the Nvidia GPU, just repeat the process above but choose Nvidia (Performance Mode).
In a MSI Gs65 Stealth, with nvidia 1060GTX it lasts about 8h with the Intel GPU enabled. It's a minor issue while not using the nvidia graphics cards.
@D4r3-D3v1L No real idea. I would look for processes with unusually high cpu consumption, and monitor overall cpu usage, maybe you'll find some hint there.
Otherwise check if it might be an ACPI issue. In my setup I've added an additional
acpi_osi=! acpi_osi='Windows 2009'
in the grub command line, see: https://gist.github.com/syntakker/1ce0328222dee3409fb96e2965953317Maybe you can explore further there.