Ubuntu(5)
-
ubuntu graphic driver install error
ERROR: The Nouveau kernel driver is currently in use by your system. This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding. Please consult the NVIDIA driver README and your Linux distribution's documentation for details on how to correctly disable the Nouveau kernel driver. Nouveau kernerl 충돌 에러 $ sudo update-initramfs -u $ sudo reboot $ Ctrl + Alt + F1 TTy1 ..
2020.06.15 -
우분투 그래픽카드 드라이버 설치
우분투 그래픽카드 드라이버 설치방법 NVIDIA 제품의 경우, NVIDA 홈페이지에 가서 자신의 그래픽카드에 맞는 드라이버를 다운받는다. 그 후 터미널을 열어 $ sudo gedit /etc/default/grub # gedit을 사용하는 경우$ sudo vi /etc/default/grub # vi을 사용하는 경우 GRUB_CMDLINE_LINUXDEFAULT="quiet splash" (default) ## GUI 모드GRUB_CMDLINE_LINUXDEFAULT="text" (after) ## Text 모드 위와같이 text모드로 변경 후 저장후 종료하고,$ grub-gupdate$ sudo reboot # 재부팅재부팅해준다. 재부팅하면 text모드로 부팅이 된다.여기서 다운받은 gpu driver..
2018.03.27 -
Ubuntu 압축/풀기
압축 풀기 □ 사용법 1$ tar -xvzf [압축 해제할 압축 아카이브 이름] eg) 해당 경로에 xxx.tar.gz 파일의 압축을 해제 1$ tar -xvzf xxx.tar.gz 압축 하기 □ 사용법 1$ tar -cvzf [압축된 파일 이름] [압축할 파일이나 폴더명] eg) 해당 경로의 모든 파일을 xxx.tar.gz로 압축 1$ tar -cvzf xxx.tar.gz * eg) 권한(permission)이 없는 파일 패스하며, 해당 경로의 모든 파일을 xxx.tar.gz로 압축 1$ tar -cvzf xxx.tar.gz * --ignore-failed-read □ 옵션값 x : 묶음을 해제c : 파일을 묶음v : 묶음/해제 과정을 화면에 표시z : gunzip을 사용f : 파일 이름을 지정p : ..
2016.06.10 -
ubuntu 한글패치 방법
sudo add-apt-repository ppa:createsc/3beol sudo apt-get update; sudo apt-get install ibus ibus-hangul # ibus와 ibus-hangul을 모두 업그레이드 한다. ibus-setup-hangul여기까지 했으면 오른쪽 위의 Eng라고 표시된 곳에서 키보드 셋팅을 눌러서korean (hangul)을 추가해주면 끝 https://launchpad.net/~createsc/+archive/3beol/ 설치할 때 터미널을 잘 살펴보면, 다음과 같은 문구가 출력되는 것을 볼 수 있다. dconf-editor // 에 들어가서desktop/ibus/general/dconf-preserve-name-prefixes '/desktop/ibu..
2016.06.10 -
Unix 명령어 모음
-------------------------------------------------------------------------------- 1.DOS와 비슷한 명령어 -------------------------------------------------------------------------------- (1). cat기능 : 파일의 내용을 화면에 출력. DOS의 'type' 명령과 유사. 사용법 : cat [options] …옵션 : -n : 행번호를 붙여서 출력. 예제 # cat /etc/fstab : /etc/fstab의 내용을 화면에 출력 사용팁 : 리눅스에서 두개이상의 옵션을 붙힐때는 앞의 '-'는 한번만 사용하고 영문자만 붙혀서 사용. --------------------------..
2016.06.01