Difference between revisions of "Ubuntu Resources"
(Added "Ubunut Apps" + "Rhythmbox") |
(→Ubuntu Apps: Added "LibreOffice" section) |
||
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | {{External Resources}} [[Category:Ubuntu]] | |
+ | |||
+ | ==Apache== | ||
+ | |||
+ | *[https://devanswers.co/installing-apache-ubuntu-18-04-server-virtual-hosts/ Installing Apache on Ubuntu 18.04 with Virtual Hosts] | ||
== Printing == | == Printing == | ||
Line 6: | Line 10: | ||
*[https://askubuntu.com/questions/214538/printing-in-booklet-format Printing in booklet format] | *[https://askubuntu.com/questions/214538/printing-in-booklet-format Printing in booklet format] | ||
+ | == PDFs == | ||
+ | |||
+ | Install Boomaga to make booklets from PDFs. | ||
+ | |||
+ | To interleave two pdf files (odd pages on one, even pages on the other), install pdftk and use the following command: | ||
+ | |||
+ | <code> | ||
+ | pdftk A=odd.pdf B=even.pdf shuffle A B output collated.pdf | ||
+ | </code> | ||
+ | |||
+ | If even.pdf is in reverse order, use this code: | ||
+ | |||
+ | <code> | ||
+ | pdftk A=odd.pdf B=even.pdf shuffle A Bend-1 output collated.pdf | ||
+ | </code> | ||
+ | |||
+ | To reverse the page order in a scanned document (even pages, for instance), install pdftk and use the following command: | ||
+ | |||
+ | <code> | ||
+ | pdftk reverse.pdf cat 10-1 output forward.pdf | ||
+ | </code> | ||
+ | |||
+ | where ''10'' is the last page number and ''1'' is the first page number. | ||
+ | |||
+ | See the [https://www.pdflabs.com/docs/pdftk-cli-examples/ server examples page] for more examples. | ||
== Image Conversion == | == Image Conversion == | ||
Line 16: | Line 45: | ||
== Ubuntu Apps == | == Ubuntu Apps == | ||
+ | |||
+ | === LibreOffice === | ||
+ | |||
+ | * [https://ask.libreoffice.org/en/question/9231/no-base-in-ubuntu/ Install Base] | ||
=== Rhythmbox === | === Rhythmbox === | ||
Line 21: | Line 54: | ||
*[https://askubuntu.com/questions/563782/rhythmbox-how-to-edit-track-order-of-playlist How to Edit Track Order of Playlist] | *[https://askubuntu.com/questions/563782/rhythmbox-how-to-edit-track-order-of-playlist How to Edit Track Order of Playlist] | ||
*[https://unix.stackexchange.com/questions/125747/how-does-one-sort-music-in-rhythmbox How Does One Sort Music in Rhythmbox] — Suggests using a plugin created by someone who responded to the post | *[https://unix.stackexchange.com/questions/125747/how-does-one-sort-music-in-rhythmbox How Does One Sort Music in Rhythmbox] — Suggests using a plugin created by someone who responded to the post | ||
+ | *[https://www.lifewire.com/complete-guide-rhythmbox-2204885 Your Complete Guide to Rhythmbox] | ||
+ | *[https://linuxacademy.com/blog/linux/managing-your-music-collection-in-ubuntu/ Managing Your Music Collection in Ubuntu] | ||
+ | |||
+ | === Typing === | ||
+ | |||
+ | * [http://ohbuntu.blogspot.com/2010/02/quickly-type-special-characters-ubuntu.html Quickly Type Special Characters in Ubuntu] | ||
+ | |||
+ | === Shutter === | ||
+ | |||
+ | * [https://itsfoss.com/shutter-edit-button-disabled/ How to Fix Disabled Edit Option in Shutter in Ubuntu 18.04] |
Latest revision as of 17:22, 30 June 2018
Contents
Apache
Printing
PDFs
Install Boomaga to make booklets from PDFs.
To interleave two pdf files (odd pages on one, even pages on the other), install pdftk and use the following command:
pdftk A=odd.pdf B=even.pdf shuffle A B output collated.pdf
If even.pdf is in reverse order, use this code:
pdftk A=odd.pdf B=even.pdf shuffle A Bend-1 output collated.pdf
To reverse the page order in a scanned document (even pages, for instance), install pdftk and use the following command:
pdftk reverse.pdf cat 10-1 output forward.pdf
where 10 is the last page number and 1 is the first page number.
See the server examples page for more examples.
Image Conversion
- Photos/Rotating Photos
- How to convert pdf files to jpg format on Linux
- ImageMagick command to convert and save with same name
- How to convert multiple files, keeping the same name
- Mogrify
Ubuntu Apps
LibreOffice
Rhythmbox
- How to Edit Track Order of Playlist
- How Does One Sort Music in Rhythmbox — Suggests using a plugin created by someone who responded to the post
- Your Complete Guide to Rhythmbox
- Managing Your Music Collection in Ubuntu