CUDA & cuDNN configuration for a Ubuntu 16.04 deep learning machine Install CUDA 8.0sudo dpkg -i cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64.deb sudo apt-get update sudo apt-get install cuda Updatesudo dpkg -i cuda-repo-ubuntu1604-8-0-local-cublas-performance- 2017-09-21 Deep Learning Linux CUDA TensorFlow
Customize the GIT for Windows How to customize The Git For Windows Bash Shell Prompt The Git for Windows Bash prompt is set using a configuration shell script named git-prompt.sh that can be found in the following directory: C:\P 2017-01-17 Git Git
Some tips about PostgreSQL and MIMICIII database Intro to PostgreSQLArchitectural FundamentalsPostgreSQL uses a client/server model. A PostgreSQL session consists of the following cooperating processes (programs): A server process, which manages th 2017-01-13 Databases PostgreSQL MIMICIII
Ubuntu 16.04 LTS & Windows 10 dual boot time zone difference For users who dual boot Ubuntu 16.04 and Windows, you may find the clock time is off that causes time differences after you reboot and switch between the two systems. Here’s how to fix it. Ubuntu main 2016-12-09 Linux Linux
Modify crash report in Ubuntu 16.04 LTS Sometimes the Ubuntu crash reports are annoying, so we can disable it by the following simple procedure: sudo rm /var/crash/* sudo vim /etc/default/apport And set “enabled=0” 2016-11-12 Linux Linux
Fix Chinese input problems in Ubuntu 16.04 LTS The Chinese input is unabled by default in Ubuntu 16.04 LTS, type the following commands to install fcitx: sudo apt install fcitx fcitx-googlepinyin fcitx-table-wbpy fcitx-pinyin fcitx-sunpinyin Sys 2016-10-29 Ubuntu Ubuntu Linux
Change GRUB boot order for Ubuntu 16.04 LTS and Windows 10 dual boot GRUB Customizer is an easy, GUI way to change the GRUB boot order, without having to edit system files manually. To install it, we first need to add the repository: sudo add-apt-repository ppa:danielr 2016-09-21 Linux Linux
Realtek RTL8723BE wireless card lose connection problem on Ubuntu 16.04 LTS I was having these problem with rtl8723be on ubuntu 16.04. I had to install new module for realtek wifi cards where they solved the constant disconnects: install required packages sudo apt-get install 2016-09-13 Linux Linux Wireless card
Dropbox for Ubuntu server 16.04 First, SSH into your Ubuntu Server. Then download Dropbox using the following command. It will be saved as dropbox-linux.tar.gz. wget https://www.dropbox.com/download?plat=lnx.x86_64 -O dropbox-linux. 2016-07-31 Ubuntu Ubuntu Linux
Setup PostgreSQL with Django on Ubuntu 16.04 LTS Install the PostgreSQLThe Ubuntu’s package repositories have the PostgreSQL packages, to install it: sudo apt-get update sudo apt-get install postgresql postgresql-contrib -y Then you are able to che 2016-07-21 Databases Django PostgreSQL Web