분류 전체보기
-
acroread with Gtk-WARNING messageComputer/linux 2009. 1. 6. 02:17
(acroread:29449): Gtk-WARNING **: /usr/lib/Adobe/Reader8/Reader/intellinux/lib/libstdc++.so.6: version `GLIBCXX _3.4.9' not found (required by /usr/lib/gtk-2.0/2.10.0/immodules/im-scim.so) (acroread:29449): Gtk-WARNING **: Loading IM context type 'scim' failed (acroread:29449): Gtk-WARNING **: /usr/lib/Adobe/Reader8/Reader/intellinux/lib/libstdc++.so.6: version `GLIBCXX _3.4.9' not found (requir..
-
turn off or reboot ubuntu 8.04 without passwd using sudoComputer/linux 2008. 12. 23. 02:19
visudo & Add the bold lines Defaults env_reset Cmnd_Alias SHUTDOWN_CMDS = /sbin/shutdown, /sbin/halt, /sbin/reboot, /sbin/poweroff root ALL=(ALL) ALL user_name ALL=(ALL) NOPASSWD: SHUTDOWN_CMDS https://help.ubuntu.com/community/Sudoers
-
ROOT system installation and updateComputer/linux 2008. 12. 20. 07:12
The ROOT system is an object-oriented Data Analysis Framework. http://root.cern.ch OS: Ubuntu 8.04 / RHEL 5.3 GCC : gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu3) / gcc version 4.1.2 20080704 (Red Hat 4.1.2-44) Some useful reference is http://root.cern.ch/twiki/bin/view/ROOT/SubversionHowto 1. Check the web site of ROOT system http://root.cern.ch/svn/root/tags/ http://root.cern.ch/viewcvs/tags/ and d..
-
convert bin and cue image files to iso fileComputer/linux 2008. 12. 19. 23:28
apt-get install bchunk Usage: bchunk [-v] [-r] [-p (PSX)] [-w (wav)] [-s (swabaudio)] Example: bchunk foo.bin foo.cue foo -v Verbose mode -r Raw mode for MODE2/2352: write all 2352 bytes from offset 0 (VCD/MPEG) -p PSX mode for MODE2/2352: write 2336 bytes from offset 24 (default MODE2/2352 mode writes 2048 bytes from offset 24) -w Output audio files in WAV format -s swabaudio: swap byte order i..
-
unicode in xtermComputer/linux 2008. 12. 18. 18:50
* apt-get install xfonts-efont-unicode-ib xfonts-efont-unicode * add the following lines in ~/.Xresources file xterm*VT100*font: -efont-fixed-medium-r-*-*-16-*-*-*-*-*-iso10646-* xterm*VT100*font2: -efont-fixed-medium-r-*-*-10-*-*-*-*-*-iso10646-* xterm*VT100*font3: -efont-fixed-medium-r-*-*-12-*-*-*-*-*-iso10646-* xterm*VT100*font4: -efont-fixed-medium-r-*-*-14-*-*-*-*-*-iso10646-* xterm*VT100*..
-
Inkscape 0.46 with latex formular errorComputer/linux 2008. 12. 18. 17:28
apt-get install pstoedit skencil inkscape and python-xml (not sure) Problem: Effects -> Render -> LaTeX formula returns nothing. Solution: Ubuntu 8.04 Hardy has a bug as https://bugs.launchpad.net/inkscape/+bug/55273 This bug can be fixed by cd /usr/share/inkscape/extensions sudo curl -s 'http://launchpadlibrarian.net/14090556/eqtexsvg.py_linux_shell_apply.patch' | sudo patch -p0 or wget -c http..
-
xorg.conf with an external monitorComputer/linux 2008. 12. 17. 20:09
The recent xorg server does not support the old xinerama setting, precisely Option "MonitorLayout" in the Device Section. The old configuration of xorg.conf are 2007/03/05 - [computer/linux] - Xinerama on Ubuntu 6.10 with open source driver 2008/02/06 - [computer/linux] - modified xorg.conf file Again.... I spent several days to understand this inconvenient HISTORY about xorg. Finally everthing ..
-
mount usb devices by using UUID or device ID (id)Computer/linux 2008. 12. 9. 16:17
Check UUIDs of the devices by blkid OR ls -lta /dev/disk/by-uuid blkid : /dev/sda1: LABEL="ATOM" UUID="5CD2-10BC" TYPE="vfat" ls -lta : 5CD2-10BC -> ../../sdc1 in fstab UUID=5CD2-10BC /media/usb-atom auto user,noauto,umask=033 0 0 bugsumount: mount disagrees with the fstab consult https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/99437/comments/3 ls -lta /dev/disk/by-id/ returns usb-Imat..