분류 전체보기
-
Rolled back to old revision in SVNComputer/linux 2013. 4. 23. 10:31
jhlee@jhleepc:~/tdr_latex$ svn up U src/sci_base.tex Updated to revision 355. jhlee@jhleepc:~/tdr_latex$ svn merge -r 355:354 src/sci_base.tex --- Reverse-merging r355 into 'src/sci_base.tex': U src/sci_base.tex jhlee@jhleepc:~/tdr_latex$ svn commit -m "Rolled back to r354 of sci_base.tex" Sending src/sci_base.tex
-
format usb stick with fat32Computer/linux 2013. 4. 2. 17:54
Check where the usb stick is mounted. $ tail -f /var/log/messagesApr 2 17:49:27 jhleepc kernel: [352495.842297] sd 18:0:0:0: [sde] 31358976 512-byte logical blocks: (16.0 GB/14.9 GiB) Apr 2 17:49:27 jhleepc kernel: [352495.848464] sde: sde1 $ mkfs.vfat -F 32 /dev/sde1 -n usb16g
-
Run a program at the boot time in Debain wayComputer/linux 2013. 3. 29. 17:37
munin-node doesn't start automatically at the boot time, so I sometimes forgot to run, then lost some data from that point. Using update-rc.d, I add them into a job which can care about this issue. root@/etc/init.d# update-rc.d munin-node start defaults update-rc.d: using dependency based boot sequencing update-rc.d: warning: start runlevel arguments (none) do not match munin-node Default-Start ..
-
gnome-keyring can't connect to pkcs11 fileComputer/linux 2013. 3. 26. 11:16
I use fvwm as a window manager on Linux since 2007. So it is difficult to understand what GNOME is doing currently. Anyway, gnome-keyring keeps bugging me about gnome-keyring. So far I ignore this message. But now I cannot stand it. So try to find how to do workaround this issue. Follow up some bug reports http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653011https://bugzilla.gnome.org/show_bug..
-
3월 20일 전산 장애 대응을 보며Coffee 2013. 3. 22. 20:12
신문에서 난리다, 농협 사설 아이피를 중국으로 오인해서 발표했다고. 사실 ip를 찾아 보면 등록되어 있는 곳은 중국이다. % [whois.apnic.net node-2] % Whois data copyright terms http://www.apnic.net/db/dbcopyright.html inetnum: 101.104.0.0 - 101.107.255.255 netname: DXTNET descr: Beijing Teletron Telecom Engineering Co., Ltd. descr: Jian Guo Road, Chaoyang District,Beijing,PR.China country: CN admin-c: PP40-AP tech-c: PP40-AP mnt-by: MAINT-CNNIC-AP..
-
merge lines of file by using pasteComputer/linux 2013. 3. 19. 19:53
Linux is always so powerful to do something, in my life. And it makes my life ease...Sometimes, I need a special tool to merge two or multiple files into a file. So here is the neat solution for that. $ more {1,2}.dat :::::::::::::: 1.dat :::::::::::::: 1 2 3 :::::::::::::: 2.dat :::::::::::::: A B C $ paste {1,2}.dat 1 A 2 B 3 C $ paste -d" " {1,2}.dat 1 A 2 B 3 C $ paste -d"," {1,2}.dat 1,A 2,..