본문 바로가기

etc/Ubuntu config

ubuntu CUI/GUI 부팅 설정 $vi /etc/default/grub #grub파일의 다음을 수정#GUI BOOTGRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #GRUB_CMDLINE_LINUX_DEFAULT="quiet splash text" -> CUI BOOT $update-grub 더보기
wireless lan configure https://github.com/RetroPie/RetroPie-Setup/wiki/Setting-Up-Wifi 더보기
powerline color customize 컬러 리스트/usr/local/lib/python2.7/dist-packages/powerline/config_files/colors.json shell 컬러 설정/usr/local/lib/python2.7/dist-packages/powerline/config_files/colorschemes/shel/default.json 더보기
VIM 플러그인 설치하기 powerline 설치http://humb1ec0ding.github.io/2013/11/26/ubuntu-powerline-beautify-the-stateline.html vundle 설치 -> 다른 플러그인들 설치해주기 위해 필요http://blog.skyserv.kr/15 syntastic 설치 -> ":w" 누르면 C, C++, python 에러 표시해줌 http://kbs0210.tistory.com/3아래의 내용도 추가 해줘야함.let g:syntastic_check_on_open=1let g:syntastic_enable_signs=1 YouCompleteMe 설치 -> "탭" 누르면 C, C++, python 코딩 자동완성$cd ~/.vim/bundle$git clone https://g.. 더보기
우분투 xinetd설치 및 관리 먼저 다음 명령어를 통해서 xinetd를 설치한다. apt-get install xinetd 설치가 완료되고 나면, 간단한 프로그램을 데몬으로 등록해 보겠다. /etc/xinetd 폴더에 다음과 같이 설정파일을 만들어주고, /etc/services 파일에 끝에 다음과 같이 포트를 지정해서 넣어준다. 그리고 init.d폴더에서 xinetd를 재시작 시켜주면 설정이 끝난다. 더보기
Linux 커널 소스 / Libc소스 받는곳 https://www.kernel.org/ - kernel소스 받는곳 http://www.gnu.org/software/libc/ - glibc소스 받는곳 더보기
ifconfig로 ip주소 간단하게 변경하기 리눅스 ifconfig 명령어 사용법1. 기 능 네트워크 인터페이스를 설정한다.2. 문 법 # ifconfig [ interface ]3. 사용방법 및 정보 [root@sense ~]# Ifconfig eth0 eth0으로 지정된 네트워크 장치의 IP Address, Netmask, Broadcast 등의 정보를 출력 [root@sense ~]# Ifconfig eth0 down 현재 작동중인 네트워크 장치 eth0의 작동을 중지 [root@sense ~]# Ifconfig eth0 210.94.172.60 netmask 255.255.255.0 up IP Adress를 210.94.172.60로 부여하고, Netmask는 255.255.255.0을 사용하도록 eth0을 활성화ifconfig로 IP Ad.. 더보기