Category Archives: Linux/ Mint

BookletImposer

BookletImposer is a Python module to achieve some basic imposition on PDF documents, especially designed to work on booklets.
With this linux application, one can make brochures from pdf files.

To install it:
open software manager > type BookletImposer install.

669 total views, no views today

Automount Partitions in Linux with “FSTAB”

Normally, the Partitions in Linux will not mount automatically.
We can solve it with “FSTAB”.

1. type sudo blkid in terminal

2. copy the UUID of the partition to automount and note the LABEL

3. type sudo nano /etc/fstab or sudo gedit /etc/fstab in terminal

4. type UUID=”UUID NUMBER*” (TAB**) “LABEL” (in my case, /media/D) (TAB) EXTENSION (in my case ntfs) (TAB) defaults (TAB) 0 (TAB) 0

e.g.: UUID=”656767868898797″ /media/D ntfs defaults 0 0

* Paste the UUID Number, you copied from “blkid”

** after each entry press TAB button

714 total views, no views today

SM Player

SM playerSMPlayer is a free media player for Windows and Linux with built-in codecs that can play virtually all video and audio formats. It doesn’t need any external codecs. Just install SMPlayer and you’ll be able to play all formats without the hassle to find and install codec packs.

One of the most interesting features of SMPlayer: it remembers the settings of all files you play. So you start to watch a movie but you have to leave… don’t worry, when you open that movie again it will be resumed at the same point you left it, and with the same settings: audio track, subtitles, volume…

SMPlayer is a graphical user interface (GUI) for the award-winning MPlayer, which is capable of playing almost all known video and audio formats. But apart from providing access for the most common and useful options of MPlayer, SMPlayer adds other interesting features like the possibility to play Youtube videos or download subtitle

Download SM Player

or Install SM Player in Linux with Commandlines

sudo add-apt-repository ppa:rvm/smplayer
sudo apt-get update
sudo apt-get install smplayer smplayer-themes smplayer-skins

1,009 total views, no views today

gscan2pdf – Convert multiple Images to pdf with in seconds

gscan2pdf Is a GUI version to make a pdf file from multiple images.

Install it from

1. Source:

http://sourceforge.net/projects/gscan2pdf/files/gscan2pdf/

or

2. via PPA in Terminal:

“sudo apt-add-repository ppa:jeffreyratcliffe/ppa”

then install the new version.

“sudo apt-get update”

“sudo apt-get install gscan2pdf”

Once gscan2pdf is opened, you can select all the required files in it by clicking on the Open Files.
By default it is arranged in alphabetical order but you can drag and drop and reorder the images as you like.
Once finished, click the Save icon and save it to PDF.
With gscan2pdf You can save lot of time!

696 total views, no views today

Ways to “Kill Process” in Linux

In Windows there is the keyboard combination to kill the process: that CTL+ALT+DEL.

In Linux you can do it in some other ways.

1. System Monitor:

go to all Programmes and find System Monitor. Select the Programme to be stopped. Then “Kill the Process”.
Kill the Process

2. PS Command:

The kill command works together with the ps command

With the ps command (ps stands for “process status”) you find out the identity of the program you want to get rid of.
Then kill will finish it off.

Here’s how you do it:

Open terminal and type: ps ux

This will show a listing of processes similar to:

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
jhaas 3064 0.1 3.6 18324 9088 ? S 17:55 0:00 /usr/bin/gnome-session
jhaas 3107 0.0 0.3 3128 968 ? S 17:55 0:00 /usr/bin/ssh-agent /etc/X11/xinit/Xclients
jhaas 3112 0.1 2.9 11208 7376 ? S 17:55 0:00 /usr/libexec/gconfd-2 11
….

If you want to terminate for example the gnome-session process, find out the process identifier (PID)(here it is 3064)
and then type in the terminal:

kill -9 3064.
The -9 will ensure “execution”.

2. PKILL Command:

Suppose you want to stop Skype and don’t to look for the PID, then you can type in the terminal:

pkill skype

It will close the running Skype Programme.

861 total views, no views today

Install JDownloader in Linux

JDownloader is free download manager written in Java and it’s cross-platform. Its developer community is very huge and trying to make it as easy and fast as possible. It allows user to start, stop or pause downloads, set bandwith limitations, auto-extract archives and much more. It offers to create a list of files and download them all at the same time. It’s an easy-to-extend framework that can save hours of valuable time every day!
JDownloader allows quick, efficient and the automatic downloading of files and split files from one-click hosting sites such as RapidShare etc.. JDownloader supports the use of premium accounts with captcha. Certain parts of JDownloader are open source, but other parts are closed-source. It has Flashgot and HJSplit integration.

Features:

Cross-Platform. (Linux, Microsoft Windows, Mac, etc.); runs on Java 1.5 or higher
24-hour support
Download several files in parallel
Download with multiple connections
Can automatically solve some CAPTCHAs with its own OCR module (JAntiCaptcha)
Automatic extractor (including password list search) (RAR archives)
Decrypt RSDF, CCF and DLC Container files
About 300 decrypt plugins for many services. For example, sj.org, UCMS, WordPress, and RLSLog.
Supports about 110 one-click hosters
Can automatically acquire a new IP address to save waiting time (1400 routers supported)
Web update
Integrated package manager for additional modules (e.g., Web interface, Shutdown)
Theme support
Multilingual

Open in Terminal:

sudo add-apt-repository ppa:jd-team/jdownloader
sudo apt-get update
sudo apt-get install jdownloader-installer

674 total views, no views today