Size: 939
Comment:
|
Size: 1033
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 (no spaces: having trouble with Wiki editing!) [-x /etc/vnc/startup] && exec /etc/vnc/startup [ -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 26: |
== Display == | '''Adding users''' {{{ sudo adduser newusername sudo usermod -aG sudo newusername }}} == 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 (no spaces: having trouble with Wiki editing!) [-x /etc/vnc/startup] && exec /etc/vnc/startup [ -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 newusername sudo usermod -aG sudo newusername
Keras setup
xxx