Поиск по этому блогу

суббота, 28 апреля 2012 г.

Объединить несколько PDF в Linux'е


sudo apt-get install pdftk
Команда очень простая - объединяет все файлы в директории, где запущена программа:

pdftk *.pdf output ouy.pdf



среда, 25 апреля 2012 г.

Access Google Drive Via Nautilus in Ubuntu


With the disclaimers out of the way lets see how you get it all set up.
First you need to add the packages provided by Luca and available in his PPA (11.10 only at present): -
  • sudo add-apt-repository ppa:invernizzi/google-docs-fs
  • sudo apt-get update && sudo apt-get install google-docs-fs
Once everything that’s needed has been installed log out and back in.
  • Open Nautilus
  • Create a new folder in your Home folder titled ‘Drive’
  • Open a Terminal and run: -
  • Input your password
  • Your Google Drive is now mounted in the ‘Drive’ folder

via OMG Ubuntu


for 12.04 users


wget https://launchpad.net/~invernizzi/+archive/google-docs-fs/+files/google-docs-fs_1.0%7Egdrive_all.deb


sudo dpkg -i google-docs-fs_1.0~gdrive_all.deb sudo apt-get install -f


mkdir Drive


gmount Drive username@gmail.com


via   http://ubuntunews.ru/apps/google-drive-ubuntu.html

вторник, 17 апреля 2012 г.

Ubuntu 12.04 64-bit version install skype

Skype is one of the best Video calling software,owned by Microsoft.Skype offer lot of features like Video call,Direct Phone call,Chatting and more.
Double click the downloaded deb file, it will open in ubuntu software centre, click the install button to install the application.
After upgrading your machine to the 64-bit version of  Ubuntu 12.04 (Precise Pangolin), your Skype might not start. The problem might be caused due to a missing 32-bit library.
Run skype to see if it throws any error.
$ 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!