'Linux & Ubuntu'에 해당되는 글 21

  1. 2009.06.11 sort and Remove duplicate lines
  2. 2009.04.02 use BibTex with latex
  3. 2009.03.30 Beamer Themes
  4. 2009.03.24 Getting start with latex
  5. 2008.12.11 find linux command
  6. 2008.10.30 gunzip
  7. 2008.07.07 grep
  8. 2008.07.04 How to know the version of ubuntu you're running
  9. 2008.05.07 linux command related with process
  10. 2008.02.27 iconv
Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2009. 6. 11. 09:31

sort and Remove duplicate lines


>>> sort myfile.txt | uniq
Linux & Ubuntu/LaTex | Posted by 알 수 없는 사용자 2009. 4. 2. 12:04

use BibTex with latex

 

  1. Download a bibliography style file such as h-physrev3.bst,  into the directory where your document is. (There are many options about - just look around the web.)
  2. Create your bibliography database file by downloading (into the directory where your document is) and editing the example file tau.bib.
  3. Remove any  \begin{thebibliography}  ...  \end{thebibliography}  commands from your document.
  4. Just before the  \end{document}  command, add

    \bibliographystyle{h-physrev3.bst}
    \bibliography{tau}
    

    (Alternatively, just download and edit this example  file.)

  5. When processing the file, you need to do: latex filename, bibtex filename, latex filename, latex filename.
Linux & Ubuntu/LaTex | Posted by 알 수 없는 사용자 2009. 3. 30. 15:05

Beamer Themes

AnnArbor

example of a slide

example of a slide

example of a slide

example of a slide

Antibes

example of a slide

example of a slide

example of a slide

example of a slide


Bergen

example of a slide

example of a slide

example of a slide

example of a slide

Berkeley

example of a slide

example of a slide

example of a slide

example of a slide

Berlin

example of a slide

example of a slide

example of a slide

example of a slide

Boadilla

example of a slide

example of a slide

example of a slide

example of a slide

CombridgeUS

example of a slide

example of a slide

example of a slide

example of a slide

Cop-enhagen

example of a slide

example of a slide

example of a slide

example of a slide

Darmstadt

example of a slide

example of a slide

example of a slide

example of a slide

default

example of a slide

example of a slide

example of a slide

example of a slide

Dresden

example of a slide

example of a slide

example of a slide

example of a slide

Frankfurt

example of a slide

example of a slide

example of a slide

example of a slide

Goettingen

example of a slide

example of a slide

example of a slide

example of a slide

Hannover

example of a slide

example of a slide

example of a slide

example of a slide

Ilmenau

example of a slide

example of a slide

example of a slide

example of a slide

JuanLesPins

example of a slide

example of a slide

example of a slide

example of a slide

Luebeck

example of a slide

example of a slide

example of a slide

example of a slide

Madrid

example of a slide

example of a slide

example of a slide

example of a slide

Malmoe

example of a slide

example of a slide

example of a slide

example of a slide

Marburg

example of a slide

example of a slide

example of a slide

example of a slide

Montepellier

example of a slide

example of a slide

example of a slide

example of a slide

PaloAlto

example of a slide

example of a slide

example of a slide

example of a slide

Pittsburgh

example of a slide

example of a slide

example of a slide

example of a slide


Rochester

example of a slide

example of a slide

example of a slide

example of a slide


Singapore

example of a slide

example of a slide

example of a slide

example of a slide

Szeged

example of a slide

example of a slide

example of a slide

example of a slide

Warsaw

example of a slide

example of a slide

example of a slide

example of a slide


Linux & Ubuntu/LaTex | Posted by 알 수 없는 사용자 2009. 3. 24. 12:03

Getting start with latex

Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 12. 11. 15:50

find linux command

#apropos
apropos what ?

#apropos translate
...

1   可执行程序或shell命令

2   系统调用

3 库调用

8 系统管理员命令(通常仅root可用)



Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 10. 30. 15:19

gunzip

gunzip -c svm_light.tar.gz | tar xvf -
Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 7. 7. 10:06

grep

print out all lines contain ( 完 ):

$> grep -w '( 完 )' train.UCUP.utf8


Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 7. 4. 16:27

How to know the version of ubuntu you're running

cate \etc\issue

Ubuntu 8.04.1 \n\l
Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 5. 7. 16:24

linux command related with process

$ps
    to see currently running process
$kill 1012    #kill {PID}
    to stop any process by PID i.e. to kill process
$killall http    #killall {Process-name}
    to stop processes by name i.e. to kill process
$ps -ag
    to get information about all running process
$kill 0
    to stop all process except your shell
$ls | wc -l &    #linux-command &
    for background processing
$ps aux
    to disply the owner of the processes along with the processes
$ps ax | grep http   #ps ax | grep process-U-want-to see
    to see if a particular process is runing or not. For this purpose you have to use
    ps command in combination with the grep command
$top
    to see currently running processes and other information like memory and
    CPU usage with real time updates.
$pstree
    to display a tree of processes
   
   
Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 2. 27. 13:53

iconv

iconv -f gb2312 -t utf-8 original_file_name > target_file_name

ex :
iconv -f gb2312 -t utf-8 train.CityU.gb > train.CityU.utf8