Computer/linux
-
How to do xterm configurationComputer/linux 2007. 6. 22. 20:04
emacs .Xresourcesadd the following xterm*background: black xterm*foreground: white xterm*VT100*geometry: 100x35 xterm*font: 6x13 xterm*utf8: 1 !xterm*HiForeColor: white !xterm*HiBackColor: #c06077 xterm*multiScroll: on xterm*jumpScroll: on xterm*SaveLines: 10000 ! xterm*VisualBell: true !xterm.eightBitOutput: true Scrollbar.JumpCursor: True XTerm*scrollBar: true XTerm*scrollKey: true XTerm*scrol..
-
ROOT gui default fontsComputer/linux 2007. 5. 24. 20:30
After installing ROOT.5.15.06, the default fonts of GUI interface were changed. I don't like these fonts. open the global rootrc file in the $ROOTSYS/etc directroy. Using xfontsel program, change from Gui.DefaultFont: -*-helvetica-medium-r-*-*-12-*-*-*-*-*-iso8859-1 Gui.MenuFont: -*-helvetica-medium-r-*-*-12-*-*-*-*-*-iso8859-1 Gui.MenuHiFont: -*-helvetica-bold-r-*-*-12-*-*-*-*-*-iso8859-1 Gui.D..
-
How to create a stand alone eps file by using pstricksComputer/linux 2007. 5. 14. 03:46
In normal latex environment, pstricks works great. But, when I want to do this with pdflatex environment, it does not work. Then I decide to create eps file.make one stand alone TeX file \documentclass{article} \usepackage{pstricks,pst-node} \usepackage{pst-eps} \pagestyle{empty} \begin{document} \begin{psmatrix}[mnode=r,colsep=0.4,rowsep=0.4] ......................................................
-
sshfsComputer/linux 2007. 5. 10. 20:38
I have one remote account of my institute with NFS. Whenever some network has problems, I cannot login my laptop or whatever. I have to stop to do something. I do not like this situation. Then I decide to use local account of my laptop. However, whenever the remote account will be needed, I use it with ssh. Well, just transfer files from local to remote, and so on. It is also weird. sshfs gives ..
-
Running programs in the background.Computer/linux 2007. 3. 10. 00:01
I installed Geant4 on the remote machine due to the computing power. I really want to do simulation without the ssh connection. nohup ./xcoffee ./macro/detector.mac The output can be saved into nohup.out filenohup ./xcoffee ./macro/detector.mac & /dev/null & :> nothing can be saved. The green commands give me no hang out when I..