Tips and tricks
From MEPIS Documentation Wiki
|
This article or section is a stub. You can help Mepis Documentation Project by expanding it. |
Contents |
[edit]
Browsers
[edit]
Firefox
Mailto
- By default, Firefox does not assign an application to handle "mailto" links. To change that behavior, type "about:config" into the address bar, then right-click the page containing a long list of preference names. Select New --> String, then enter for preference name:
network.protocol-handler.app.mailto
and for preference value the path to the email client you want to use, for instance,
/usr/bin/thunderbird
or for kmail, enter
kmailservice
Transferring profiles
- When transferring a Firefox profile, whether in migrating from Windows, another Linux version, or from one MEPIS installation to another, you will need to change the file profiles.ini following these directions in order to access your bookmarks, cookies and preferences.
IPv6
- If you have web access in Konqueror but not in Firefox, you may have to change the way addresses are being handled by disabling IPv6. See this page on how to disable it, and here for an overview of how different applications handle this protocol.
[edit]
Opera
- Notes feature:
- Select text in a web page -> rightclick and choose "copy to note" or use the shortcut Ctrl-Shift-C. To access your notes press Ctrl-6 or press F4 to see the sidebar and select Notes from there. When you double click on the note it will open the site from where you copied the note. It is very useful when you do research and need to copy things from many separate pages and then still be able to go back to those pages.
- Search feature:
- To add a search engine from any webpage, right-click the search box, select "Create search," fill in a name and a keyword (optional), and click OK. The site will be added to the pull-down search menu.
- Tray icon
- By default, Opera puts an icon into the system tray when it opens. To stop that behavio--useful if kicker space is limited, for instance--add -notrayicon (include the single dash) to the command space in the KMenu entry and on the Application tab of any kicker or desktop icon.
- Java and Java Script
- You can test your current capability on the Java Tester website. If you encounter problems, be sure to consult the troubleshooting section of the Opera page on how to make a soft link to the Firefox plugins directory.
[edit]
Email clients
[edit]
Thunderbird
- External links
- To get Thunderbird to open hyperlinks in Firefox (alter as needed for another browser):
- Open preferences --> advanced --> config editor
- Right-click and create a new entry ("string") with name:
network.protocol-handler.app.http
and value:
/usr/bin/firefox
Do the same for https and ftp.
- Transfering profiles
- When transfering a Thunderbird profile, whether in migrating from Windows, another Linux version, or from one MEPIS installation to another, you will need to change the file profiles.ini following these directions in order to access your mail and preferences.
[edit]
Kmail
- External links
- To get Kmail to open hyperlinks in Firefox, you can set firefox as your default browser in KDE Component Chooser. In particular, see steps 1 & 2.
[edit]
Console
- drag&drop -- you can drag a file or folder to Konsole. You'll get a short menu with choices to move the file, copy the file or cd to that folder.
[edit]
Desktop
- Wallpaper: Right-click on the Desktop -> Configure Destop -> Background -> Press "Get New Wallpapers" to get wallpapers from KDE-look.org
[edit]
Useful bash commands
[edit]
Finding largest files
find . -type f -printf "%k %p\n" | sort -rn | head
[edit]
List installed packages
dpkg --get-selections | grep -v deinstall | cut -f 1 | tr '\n' ' ' > listpackages.txt
Explanations: "grep" is used to remove lines that contain "deinstall" (packages that were removed) "cut" is used to remove second column and "tr" to transform newline character into blank so the output could be used with "apt-get".
[edit]
List install history
ls -lt /var/lib/dpkg/info/*.list|awk '$6!=x{print "";x=$6;print x}{printf " %s", substr($8,20,length($8)-24)}'|less

