sudo apt-get install pdftk
Команда очень простая - объединяет все файлы в директории, где запущена программа:
pdftk *.pdf output ouy.pdf
$ skype skype: error while loading shared libraries: libXv.so.1: cannot open shared object file: No such file or directory
Find the missing libraries using the ldd command.
$ ldd /usr/bin/skype
linux-gate.so.1 => (0xf7796000)
libasound.so.2 => /usr/lib/i386-linux-gnu/libasound.so.2 (0xf767d000)
libXv.so.1 => not found
libXss.so.1 => /usr/lib/i386-linux-gnu/libXss.so.1 (0xf7678000)
Insatll the 32-bit version of the library
$ sudo apt-get install libxv1:i386
Enjoy!