본문 바로가기

개발 환경/우분투15

[Ubuntu 16.04] Atom 설치 Ubuntu 16.04 Atom 설치 (PPA이용) Atom ppa 추가 $ sudo add-apt-repogitory ppa:webupd8team/atom apt update $ sudo apt update Atom 설치 $ sudo apt install atom Atom 삭제 $ sudo apt remove --purge atom 출처http://tipsonubuntu.com/2016/08/05/install-atom-text-editor-ubuntu-16-04/ 2017. 7. 12.
[Ubuntu] 새 파일 만들기 파일을 만들 위치에 들어간다. 확장자를 포함한 파일 이름을 표시한다.$ touch newfilename 출처http://askubuntu.com/questions/21556/how-to-create-an-empty-file-from-command-line 2016. 11. 9.
[ubuntu] ssh error connect to host localhost port 22: Connection refused ssh localhost 접속을 할 때 접속 거부를 당하는 경우가 있다.$ ssh localhost $ sudo ufw enable $ sudo apt-get install openssh-server 출처http://stackoverflow.com/questions/17335728/connect-to-host-localhost-port-22-connection-refused 2016. 8. 25.
[우분투] 사용자 sudo 권한 추가 1. sudo visudo 로 /etc/sudoers 파일을 연다. $ sudo visudo 2. root ALL=(ALL:ALL) ALL 밑에 사용자명 ALL=(ALL:ALL) ALL 을 추가해준다. 3. Ctrl + o 를 눌러서 /etc/sudoers.tmp 를 /etc/sudoers 로 바꿔서 저장한다. 이미 존재하는 파일이므로 덮어쓰기를 한다. 4. Ctrl + x 를 창을 닫는다. 출처 http://askubuntu.com/questions/7477/how-can-i-add-a-new-user-as-sudoer-using-the-command-line 2016. 8. 10.
[우분투] 한글 설정 1. System Settings -> Language Support 자동으로 업그레이드를 해주는데 업그레이드를 하고 나서도 Korean(Hangul)이 보이지 않는 경우도 있다. 2. Install / Remove Languages... 에서 Korean을 설치해 준다. 3. Logout / Login 을 한다.그냥 Text Entry에 들어갔을 경우 Korean(Hangul)이 보이지 않는다. 반드시 로그아웃/로그인 해줘야한다. 4. System Settings -> Text Entry'+' 버튼을 눌러 Korean(Hangul) 을 추가 해주고 Switch to next source using: 을 자신이 사용할 단축키로 변경해준다. 2016. 8. 4.
[우분투 64bit] Bitnami LAMP 설치 비트나미 Linux LAMP 다운 페이지에 접속한다.https://bitnami.com/stack/lamp/installer 다운 받을 파일의 버튼을 오른쪽 클릭한 다음 링크 주소 복사를 한다. 터미널 창으로 들어가 wget 명령어를 사용하여 다운받는다. wget 복사한 링크 주소 붙여넣기wget https://bitnami.com/redirect/to/115313/bitnami-lampstack-5.6.24-0-linux-x64-installer.run chmod 명령어를 사용하여 권한을 변경해 준다.sudo chmod 700 bitnami-lampstack-5.6.24-0-linux-x64-installer.run lamp를 설치 한다.sudo ./bitnami-lampstack-5.6.24-0-li.. 2016. 7. 27.