본문 바로가기

SPECIALTY

setting ramdisk /boot/grub/grub.cfg 파일 수정 linux /boot/vmlinuz-2.6.31-14-generic root=UUID=be47eaf0-cdde-4688-8933-d3257a353ad8 ro quiet splash 위의 라인 뒤에 "ramdisk_size=xxxxx" 추가. 입력단위: kb(1024). ex) 10GB: 2^23 = 8388608 + 2^21 = 2097152 = 10485760. sudo mke2fs -m 0 /dev/ram0 sudo mount /dev/ram0 mnt/rd sudo chown matia /mnt/rd 더보기
Latex 문서에 svn 버전 정보 삽입. - TortoiseSVN 설정 - 1. Right-click on LATEX file(S) -> ‘TortoiseSVN’ -> ‘Properties’, 2. press ‘Add’ and select ‘svn:keywords’ as name and ‘Id Author Date Rev URL’ as value, ‘Ok’ - Latex 문서에 코드 추가 - 1. svn package 사용 \usepackage{svn} \SVN $Id: vssim.tex 17 2011-03-03 09:03:38Z matia $ \SVN $Date: 2011-03-03 18:03:38 +0900 (목, 03 3 2011) $ \SVN $Revision: 17 $ 2. svn-multi package 사용 \usepackage{s.. 더보기
raid 설정 raid 설정을 위한 패키지 설치 $ sudo apt-get installl mdadm 의존성에 의해 같이 설치되는 citidle 패키지는 일종의 db로 RAID디스크를 관리하게 된다. 사용자 입장에 따로 설정할 것은 없음. 기본값으로 설정. 패키지를 설치하게 되면 의존성에 걸린 몇가지의 패키지를 같이 설치 하게 되는데 그중 citadel이라는 패키지가 같이 설치 됩니다. 두개의 디스크를 파티션과 파일시스템을 만든다. 파티션은 fdisk를 이용하여 나눔. $ sudo fdisk /dev/sdb Command (m for help) : p // 현재 파티션의 상태를 봅니다. Command (m for help) : n // 새로운 파티션을 만듭니다. Command action e extend p prima.. 더보기
vnc 화면 멈춤 현상 해결.. 몇달전부터 vnc 접속시 화면이 멈추는 현상이 있어 골치를 썩었는데 드디어 해결했다.. 처음엔 원격 문제인가 싶었는데.. 이런저런 프로그램을 써봐도 안되고, 서버의 모니터로 확인결과.. I/O명령은 잘 수신이 되고, 화면만 못뿌려 주는 것 같았다 결론은 vnc와 compiz의 충돌 문제였다. compiz는 우분투의 3D desktop을 지원하는 OpenGL 기반의 유틸리티이다. 이것은 아주 편리한 UI를 지원하는듯! 윈도보다 더..? 아무튼.. 해결방법은 아주 간단하다.. 설정하나만 바꾸면 되는 것을.. 1) Open a terminal o press ALT+F2, then run/type: gconf-editor 2) Go to /desktop/gnome/remote_access and enable ".. 더보기
ubuntu telnet 설정 xinetd 와 telnetd 설치 > sudo apt-get install xinetd telnetd 설정 파일 수정 > sudo vi /etc/xinetd.conf service telnet { disable=no flags=REUSE wait=no user=root server=/usr/sbin/in.telnetd log_on_failure+=USERID } 서버 재시작 > sudo /etc/init.d/xinetd restart 더보기
ubuntu samba 서버 설정 삼바 서버 설치 > sudo apt-get install samba smbfs 사용자 등록 > sudo smbpasswd -a matia 설정파일 수정 > sudo vi /etc/samba/smb.conf # 한글 이름이 깨지지 않도록 수정 [global] # 윈도우 네트워크 환경의 작업 그룹 이름을 입력했습니다. workgroup = workgroup dos charset = CP949 display charset = UTF8 unix charset = UTF8 # matia유저에 대한 삼바 공유 폴더 설정 [matia] comment = matia path = /home/matia writeable = yes guest ok = no create mask = 0644 directory mask = 0.. 더보기
Failed to parse existing X config file ‘/etc/X11/xorg.conf’ If you are trying to save your xorg.conf file after changing settings in the nvidia-settings app you may need to first replace it with > sudo nvidia-xconfig This will back it up and then recreate it. Seems a fresh install of Karmic Koala 9.10 doesn’t create a valid xorg.conf or it can’t parse it. Whatever the case, that’s the fix. Then you can > sudo nvidia-settings To change and save your setti.. 더보기
ISI Web of Knowledge SCI 논문 검색 http://apps.isiknowledge.com/UA_GeneralSearch_input.do?product=UA&search_mode=GeneralSearch&SID=W1n4aG2n24cJK553KL1&preferencesSaved= 더보기
Ubuntu 사운드 설정 현재 컴퓨터에 설치된 하드웨어 확인 > lspic > lspci |grep -i audio 사운드 설정 > alsamixer : 음량 막대아래 00 = on, MM=Mute M키로 상태 변경 가능 명령 에러시 > alsa force-reload /etc/modprobe.d/alsa-base-conf 파일 수정 # opctions snd-hda-intel power_save=10 power_save_controller=N -> 주석 처리 options snd-hda-intel probe_mask=1 model=intel -> 추가 model=intel 에 자신의 모델 입력 모델명 리스트 : http://www.mjmwired.net/kernel/Documentation/sound/alsa/HD-Audio-.. 더보기
Virtual Machines & Snapshots Virtual Machines & Snapshots Recently I was getting a lot of errors on my VMWare ESXi 3.5 server, that there is not enough space for the redo log etc. When I created the VMs, there was enough space left on the VM Server and suddenly I am out of space and all my VMs are either complaining or not working. Did some dig up and found that some snapshots were created, which was never committed and hen.. 더보기