본문 바로가기

DevStory

Ubuntu 설치

우분투 설치 관련 link

항상 설치 할 때마다 찾아보게 되는 것들...

-- create install usb on OSX

http://computers.tutsplus.com/tutorials/how-to-create-a-bootable-ubuntu-usb-drive-for-pc-on-a-mac--cms-21187

http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-mac-osx


-- 한영전환

http://blog.daum.net/bagjunggyu/154


-- install vmware horizon client

http://vdisage.blogspot.kr/2015/01/installing-horizon-view-320-client-on.html


-- install mysql 5.6

https://www.digitalocean.com/community/questions/upgrade-mysql-5-5-to-5-6-ubuntu-14-04


-- create desktop short cut

##############

// create file:

sudo vim /usr/share/applications/intellij.desktop


// add the following

[Desktop Entry]

Version=13.0

Type=Application

Terminal=false

Icon[en_US]=/home/rob/.intellij-13/bin/idea.png

Name[en_US]=IntelliJ

Exec=/home/rob/.intellij-13/bin/idea.sh

Name=IntelliJ

Icon=/home/rob/.intellij-13/bin/idea.png



// mod permissions

sudo chmod 644 /usr/share/applications/intellij.desktop

sudo chown root:root /usr/share/applications/intellij.desktop

##############

https://gist.github.com/rob-murray/6828864


-- mongodb

http://zzaps.tistory.com/226


-- redis

http://www.tutorialbook.co.kr/entry/Ubuntu-Redis-%EC%B5%9C%EC%8B%A0-stable-%EB%B2%84%EC%A0%84-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0


-- boot volume full

http://askubuntu.com/questions/89710/how-do-i-free-up-more-space-in-boot

confirm kernal version : uname -a

remove old kernel : sudo apt-get purge linux-image-3.16.0-46


-- install mysql workbench if it has a dependency issue with mysql-client

http://bgasparotto.com/install-mysql-workbench-ubuntu/