Differences between revisions 1 and 2
Revision 1 as of 2017-01-30 03:29:34
Size: 939
Editor: ChengLim
Comment:
Revision 2 as of 2017-01-30 03:57:15
Size: 984
Editor: ChengLim
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
Package installation

Terminal
commands:
'''Package installation '''
Line 18: Line 16:
'''VNC server configuration'''
Line 19: Line 18:
VNC server configuration:
Terminal commands:
* `
#!/bin/sh`
* `[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup`
* `[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources`
* `xsetroot -solid grey`
* `vncconfig -iconic & `x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & x-window-manager & gnome-panel &
gnome-settings-daemon & metacity & nautilus &`
{{{#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic & `x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & x-window-manager & gnome-panel & gnome-settings-daemon & metacity & nautilus
Line 28: Line 24:
== Display == '''Adding users'''

{{{
sudo adduser [username]
sudo usermod -aG sudo [username]
}}}
== Keras setup ==

Setup for deep learning workstation

This page covers the steps for setting up a machine primarily intended for deep learning analyses. This is assuming Ubuntu has already been installed.

Initial setup

Package installation

openssh-server
sudo apt-get install tightvncserver
sudo apt-get install ubuntu-desktop gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal

VNC server configuration

{{{#!/bin/sh [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic & `x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & x-window-manager & gnome-panel & gnome-settings-daemon & metacity & nautilus }}} Adding users

sudo adduser [username]
sudo usermod -aG sudo [username]

Keras setup

xxx

rapwiki: DeepLearningSetup (last edited 2018-07-17 02:17:11 by ChengLim)