Computer/linux
-
Interesting fonts are mostly related with Korean on DebianComputer/linux 2013. 1. 16. 20:34
aptitude install texlive-fonts-extra ttf-freefont ttf-mscorefonts-installer ttf-unifont ttf-unfonts-core ttf-unfonts-extra xfonts-efont-unicode xfonts-efont-unicode-ib xfonts-intl-asian xfonts-nexus xfonts-unifont gsfonts-x11 fonts-freefont-otf fonts-freefont-ttf fonts-baekmuk emacs-intl-fonts fonts-breip ttf-nanum ttf-nanum-coding ttf-nanum-extra fonts-nanum-gothic-light fonts-nanum-extra fonts..
-
remove octave history list completelyComputer/linux 2013. 1. 15. 17:29
They are a plenty explanaion abou an octave history list at http://www.gnu.org/software/octave/doc/interpreter/Commands-For-History.html#doc-edit_historyHowever, what I want is to remove all history inside octave competely. And the method I found isrm -rf ~/.octave_hist
-
ignore files with svnComputer/linux 2013. 1. 15. 12:59
To ignore files in SVN, $ svn st ? beamcontrol.aux ? beamcontrol.bbl ? beamcontrol.log ? beamcontrol.dvi ? beamcontrol.blg ? beamcontrolNotes.bib M beamcontrol.bib M beamcontrol.tex $ svn propedit svn:ignore .In an editor (in my case, emacs ) , type*.aux*.log*.pdf*.dvisave them and exit $ svn propget svn:ignore . *.aux *.log *.dvi *.pdf *.blg $ svn status --no-ignore M . I svn-prop.tmp~ I beamco..
-
increase client win7 disk size on LinuxComputer/linux 2012. 12. 16. 22:40
The original disk space was 20 GiB, so windows keep asking me that they need a space. I found the web site http://jonmifsud.com/blog/increase-virtualbox-disk-size/. And follow what he did, and got the 50 GiB disk space. ~/.VirtualBox/HardDisks$ VBoxManage modifyhd Usage: VBoxManage modifyhd | [--type normal|writethrough|immutable|shareable| readonly|multiattach] [--autoreset on|off] [--compact] ..
-
ClusterSSHComputer/linux 2012. 12. 5. 17:15
Description ClusterSSH controls a number of xterm windows via a single graphical console window to allow commands to be interactively run on multiple servers over an ssh connection.at http://sourceforge.net/projects/clusterssh/ 1) Install clusterssh via aptitute install clusterssh 2) Add the following to $HOME/.csshrc terminal_args = -fg green terminal_font = 7x14 clusters = controls jhlee risp ..
-
remove the window entry in grub 2 screenComputer/linux 2012. 11. 5. 17:29
1) open a /etc/default/grub file2) add the following line GRUB_DISABLE_OS_PROBER=true 3) execute update-grub2 Generating grub.cfg ... Found background image: /usr/share/images/desktop-base/desktop-grub.png Found linux image: /boot/vmlinuz-2.6.32-5-amd64 Found initrd image: /boot/initrd.img-2.6.32-5-amd64 done
-
BIOS update with bootable CD (Linux)Computer/linux 2012. 9. 27. 10:57
Step 1 : Download a BIOS file, e.g., 42F1P33.zip and unzip them $ unzip 42F1P33.zipArchive: 42BF1P33.zip inflating: 42BF1P33.BIN inflating: AFU860A.EXE Step 2 : Download FREEDOS and copy BIOS files into ...$ wget http://www.fdos.org/bootdisks/autogen/FDOEM.144.gz $ gunzip FDOEM.144.gz $ mkdir /tmp/cdr # mount -t vfat -o loop FDOEM.144 /tmp/cdr # scp 42BF1P33.BIN /tmp/cdr/ # scp AFU860A.EXE /tmp/..
-
thunderbird 64 bit versionComputer/linux 2012. 9. 25. 11:25
If one executes the thunderbird 32bit on 64bit machine, one could see the following error message: (thunderbird:19701): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64 So I download the 64bit version thunderbird via http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/linux-x86_64/en-US/No error messages are displayed when I execut..