Advertisment

Find Apps That are Using Your Net Connection in Linux

author-image
PCQ Bureau
New Update


Advertisment

Advertisment

Sufyan bin Uzayr, Freelance Writer, Graphic Artist, Photographer, www.sufyan.co.nr

LIBREOFFICE POWER TIPS

Using Multiple Language Packs in Spell Checker

Advertisment



Sometimes, our documents contain text in more than one language and while running the spell checker, this poses a rather inconvenient problem. In most free Office suites, the way out is to ignore the text of the other language while checking the rest of the document. However, in LibreOffice, you can specify multiple language pack dictionaries and it will automatically decide which one to use on the basis of text. Simply go to Tools-->Language and select the correct option. You can specify a separate language for the current paragraph, a selection of text or the entire document. Further more, you can also download additional language packs from within this menu.

Adding Extensions to LibreOffice



Back in the days of OpenOffice, adding extensions to the software was a pain. However, with the advent of LibreOffice, you can do it easily in a matter of seconds. Once you install the software, head to Tools-->Extensions Manager and then select the extension that you wish to add, remove or tweak. You can also add custom extensions from LibreOffice Online.

Advertisment

Editing PDFs



We know that LibreOffice can easily export a document to PDF from any format, be it ODT or DOC. However, at times we may need to edit an already existing PDF document (and not all of us can afford the luxury of Adobe Acrobat as it isn't open source). In such a case, we can find a work around method using LibreOffice. LibreOffice can import a PDF file, though it will do so as a Draw image, not a Writer document. Once you import the file as an image, you can easily drag and resize text, images and other contents of the PDF file. Once done, simply export the file as PDF just as you would've had it been any other document. While this method is not the best way to edit a PDF file, it surely comes in very handy when we need to make quick and small changes to a file.



Using Hyperlinks in Documents

Advertisment



If you edit documents that involve a lot of hyperlinks, you can activate the Hyperlink Bar for easier editing. To do so, go to View-->Toolbars and select Hyperlink Bar. The bar contains just two areas — the first one is for entering the display text and the second is for the URL. Once you fill in the values for both the fields and hit Enter, the hyperlink will be entered. You can use this toolbar to enter or edit hyperlinks in bulk.

Using Autocomplete in Writer



To enable the Autocomplete option in LibreOffice Writer, go to Tools-->Autocorrect Options and in the Word Completion tab, check 'Enable Word Completion' and 'Collect Words'. This will cause the word processor to create a database from the words you type often and eventually, as you type those words, it will start auto suggesting the same and you will simply need to hit Enter to accept the Autocomplete suggestion.

Advertisment

Using the Thesaurus



LibreOffice comes with an in-built Thesaurus. If you wish to look up a word, simply select it and hit Ctrl+F7. Alternatively, you can also navigate to Tools-->Language-->Thesaurus.

Advertisment

Securing the Templates



LibreOffice lets you create custom templates or even download them. At times, we may accidently end up editing or modifying the template in ways that may ruin its worth. In such a case, we can make our templates read-only and password-protect them. To do so, open the template file, go to File-->Properties. Now click on the Security Tab and select 'Read Only'. Once you click on the 'Protect' button, a dialog will appear asking you for the password. Following that, your templates will be safe from accidental editing.

Using the Navigator



If you are editing a very large document, you can use the Navigator to browse through the different sections of the file or multiple files. In order to bring up the Navigator, hit F5 or click View-->Navigator. The layout of the Navigator is divided into Headings, Tables, Text frames, Graphics, OLE Objects, and so on.

BECOME MORE EFFICIENT WITH GOOGLE CHROME

Keyboard Shortcuts



Ctrl+Shift+N : Opens an Incognito window (any sites that you browse here will not be stored in History).



Alt+Home : Brings up the Start Page.



Ctrl+T : Opens a new tab.



Ctrl+Shift+T : Opens the most recently closed tab. Repeat the shortcut for the next closed tab, and so on (Chrome remembers last 10 closed tabs).



Ctrl+1, Ctrl+2 ... Ctrl+9 : Jumps to different open tabs on the basis of the number.



Ctrl+Tab : Cycles through open tabs in order.



Ctrl+Shift+Tab : Cycles through open tabs in opposite order.



Ctrl+B : Toggles the Bookmarks bar.



Ctrl+H : Brings up the History page.



Ctrl+J : Brings up the Downloads page.



Ctrl+K, Ctrl+E : Search from the Address Bar.



Shift+Escape : Brings up the Google Chrome Task Manager.

Address Bar Tricks



Typing about:plugins in the Address Bar shows the installed plugins. Similarly, about:stats, about:network, about:histograms, about:memory, about:cache, about:dns perform their respective display operations.

POWERFUL LINUX TIPS

View All Applications Currently Using the Internet



If you wish to check the applications that are using the internet resources, type the following command in the terminal:

lsof -P -i -n

The above command will provide the info about applications that are accessing the internet.

Stop Running Processes



At times, we have to deal with a frozen application that refuses to end and needs to be killed. If 'force-quit' also fails, we need to hop on to the terminal in order to terminate the application, and then issue the following command:



ps -e

We will now need to pass the Process ID (PID) of the frozen application. For instance, let's say GEdit is the frozen application. In order to get its PID, we shall first run the following command:



ps -e | grep gedit



The above command shall return the PID of the application (say, 5). next, we just need to pass the PID of the application along with the kill command as follows:

kill -5 PID

This shall get rid of the frozen application.

Advertisment