I found this when looking for a way to combine multiple PDF documents into one. You just need to
sudo apt-get install gs pdftk
- gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combinedpdf.pdf -dBATCH 1.pdf 2.pdf 3.pdf
Afterthoughts glow afterwards
sudo apt-get install gs pdftk
sudo apt-get install rsync
/etc/default/rsync
to include "RSYNC_ENABLE=true"
/etc/rsyncd.conf
sudo chown root:root /etc/rsyncd.conf
/etc/rsyncd.secrets
sudo chown root:root /etc/rsyncd.secrets
sudo chmod 600 /etc/rsyncd.secrets
sudo /etc/init.d/rsync start
~/.dropbox-dist/dropboxd
/usr/bin/ssh-add
(using ksshaskpass)/usr/bin/sshfs eee1005.home.lan:/home/stefan/ /home/stefan/eee1005/
/usr/bin/synergys
/usr/bin/synergyc -f e521mk
I have it up and running for some weeks now, I took the most simple approach possible described here: just create one partition on the SSD (I still have Grub on my HD) using
sudo fdisk -H 32 -S 32 /dev/sdg (choose first cylinder as 2, end cylinder as the default one)
sudo mke2fs -t ext4 -E stripe-width=128 /dev/sdg1
when booting Kubuntu 10.10 from installation CD, then install from there.
No need to do any aligning calculations whatsoever. I even have /home
, /tmp
and /var
on the SSD. There is quite some write activity in those directories, but then SSDs get cheaper and cheaper …
All that is left to do after installation is:
sudo apt-get install sysfsutils
sudo nano /etc/sysfs.conf
block/sdf/queue/scheduler = noop
at the endsudo nano /etc/fstab
/
to noatime,discard,data=ordered,errors=remount-ro
System performing abolutely great now!
I've got myself an OCZ Vertex 2 60 GB for Christmas :-)
I'll document the process of how to configure, format and install Kubuntu 10.10 here. I've waited until this release, as starting from 2.6.33 Linux Kernel has built in TRIM support making best use of SSDs. I'll try to come up with the best setup for
/home
and /var
on my existing HDD as these will be written to rather frequentlyI'll make use of knowledge gained by filesystem developer Ted Ts'o and some other blogger regarding alignment considerations, the excellent Ubunti Wiki SSD checklist and the detailed blog entry on Aligning an SSD on Linux by Markus Ewald.
Now the fun can start …
/etc/messages
, but according to Google they were not relevant. Than I found a post describing the same behaviour, noting that starting KPDF as root worked. I checked it, same with me.kpdf: WARNING: Unknown mimetype 'application/x-kdeuser1'.
x-kdeuser1
(I also had x-kdeuser2
) solved the problem.
/etc/apt/sources.list
add## medibuntu
deb http://packages.medibuntu.org/ hardy free non-free
deb-src http://packages.medibuntu.org/ hardy free non-free
wget -q http://packages.medibuntu.org/medibuntu-key.gpg -O-
| sudo apt-key add -
sudo apt-get update