Problem: Matlab always export my 3D figure to an eps-file that is build out of points instead of vectors. This results in a poor quality of the picture.
Solution: type in matlab print -depsc -tiff -r600 output
This give a nice quality eps-file as result were -r600 indicates the number of dots per inch.
Problem: Alot of jpeg file need to be resized
Solution:
for file in `ls *.JPG`
do
name=`echo $file | cut -f1 -d.`
# convert to 640x480
convert -geometry 640x480 $file ${name}640x480.jpg
# convert to 800x600
convert -geometry 800x600 $file ${name}800x600.jpg
# convert to 1024x768
convert -geometry 1024x768 $file ${name}1024x768.jpg
# create thumbnail (if you need/want to)
convert -geometry 100x100 $file ${name}_T.jpg
done
Problem: Add ../bin/lin/ to standard PATH
Solution:
PATH=$PATH:/home/peter/EDK/bin/lin/:/home/peter/Xilinx/bin/lin/
export PATH
to view PATH : $PATH
mythtv fails
Solution:
download new ivtv-1.0.3 source package and replace in the ../ivtv-1.0.3/driver/ directory ivtv-driver1.h by ivtv-driver2.h for a 2.6.* kernel
load following modules: ivtv tda9887 ivtvfb for a PVR-350 tv-card
Problem is solved !!!
wireless card not detected
Solution:
dowload the driver RT2570 on http://rt2x00.serialmonkey.com/rt2570-cvs-daily.tar.gz and build this driver
load the RT2570 modules and add
auto rausb0
iface rausb0 inet dhcp
to /etc/network/interfaces