sudo rmmod pcspkr
Update: It is better to do,
sudo modprobe -r pcspkr
sudo rmmod pcspkr
sudo modprobe -r pcspkr
png2eps
can be used. To make png2eps
work you would need to install the following: $ sudo aptitude install pngcheck libtiff4 libtiff-tools netpbm
$ wget http://www.henlich.de/media/png2eps/png2eps
$ chmod a+x png2eps
$ ./png2eps myimage.png > myimage.eps
\documentclass[a4paper,10pt]{article}
\usepackage{graphics}
\usepackage{graphicx}
\begin{figure}
\caption{some figure}
\begin{center}
\includegraphics[bb=0 0 438 476]{myimage.eps}
\end{center}
\end{figure}
sudo aptitude install pidgin pidgin-themes pidgin-facebookchat pidgin-musictracker
.tex
file and end up seeing an error ".bbl
could not be located", after you open the .dvi
file generated, you will notice that the reference section is missing. This is because in the first run LaTeX created the .aux
file which needs to be fed to Bibtex which will generate the .bbl
file. #1 $ latex source.tex
#2 $ bibtex source.aux (generated in Step #1)
#3 $ latex source.tex
src: aptitude show sqlite
) $ sudo aptitude install sqlite3
$ latex A.tex
sudo aptitude install texlive-full kile kbibtex lyx
gcc -shared -Wl,-soname,your_soname -o library_name file_list library_list
a.c
and b.cgcc -fPIC -g -c -Wall a.c
gcc -fPIC -g -c -Wall b.c
gcc -shared -Wl,-soname,libmystuff.so.1 \
-o libmystuff.so.1.0.1 a.o b.o -lc
libmystuff.so
and libmystuff.so.1
from libmystuff.so.1.0.1 and don't forget to add the libraries to the standard path /usr/local/lib
OR add the path to LD_LIBRARY_PATH
before executing.git clone git://gitorious.org/sched_deadline/linux-deadline.git
.*
*.lds
*.o
*.o.*
*.a
*.s
*.ko
*.so
*.so.dbg
*.mod.c
*.i
*.lst
*.symtypes
*.order
*.elf
*.bin
*.gz
*.lzma
*.patch
*.gcno
tags
TAGS
bzImage
vmlinux
System.map
Module.markers
Module.symvers
!.gitignore
!.mailmap
patches-*
patches
series
exclude-list
filefortag
filelist
cscope.*
ncscope.*
GPATH
GRTAGS
GSYMS
GTAGS
*.orig
*~
diff --exclude-from /path/to/exclude-list -urNd linux-2.6.24-hunterwala linux-2.6.24 > patch_file
include/asm
include/asm-*/asm-offsets.h
include/config
include/linux/autoconf.h
include/linux/compile.h
include/linux/version.h
include/linux/utsrelease.h
include/linux/bounds.h
include/generated
-N
passed to diff would treat these as new files and include them in the patch. :(.gitignore
]