mirror of
https://github.com/tiyn/wiki.git
synced 2025-08-04 20:47:45 +02:00
Compare commits
3 Commits
52c43e3ed3
...
dfb57a4b21
Author | SHA1 | Date | |
---|---|---|---|
|
dfb57a4b21 | ||
|
555deee780 | ||
|
a0d4534a17 |
@ -1,12 +1,12 @@
|
||||
# Calibre
|
||||
# calibre
|
||||
|
||||
[Calibre](https://calibre-ebook.com/) is a cross-platform, free and open-source
|
||||
[calibre](https://calibre-ebook.com/) is a cross-platform, free and open-source
|
||||
software suite for [e-book](/wiki/e-books.md) management.
|
||||
It supports various formats aswell as conversion between them.
|
||||
|
||||
## Usage
|
||||
|
||||
This section addresses various features of Calibre.
|
||||
This section addresses various features of calibre.
|
||||
|
||||
## Adding a Plugin
|
||||
|
||||
@ -103,3 +103,17 @@ Additionally the `Kobo Touch Extended` plugin is recommended to use since it mak
|
||||
Kobo e-readers easier.
|
||||
Finally `KePub Metadata Reader` and `KePub Metadata Reader` make it possible to read and write
|
||||
metadata to `.kepub` files which is especially useful.
|
||||
|
||||
## Exporting and Importing Settings and Libraries
|
||||
|
||||
This section explains how to export and import the settings of one calibre instance to another.
|
||||
It is based on a
|
||||
[reddit comment by dwhitzzz](https://www.reddit.com/r/Calibre/comments/1313kix/comment/mo4b9rn).
|
||||
|
||||
To export the settings and libraries of a calibre instance open the corresponding instance and then
|
||||
right-click the `calibre` Button on the top menu.
|
||||
Select `Export/import all calibre data`, select the export or import option and then follow the
|
||||
instructions.
|
||||
Please note that the export only works when an empty folder is selected.
|
||||
All calibre data will then be exported into the selected directory.
|
||||
For the import process the folder that includes the calibre data has to be selected.
|
||||
|
@ -24,7 +24,7 @@ mkinitcpio -P
|
||||
|
||||
This section addresses various errors that can happen when using mkinitcpio.
|
||||
|
||||
### '/lib/modules/xxxxxxx' is not a valid kernel module directory
|
||||
### `'/lib/modules/xxxxxxx' is not a valid kernel module directory`
|
||||
|
||||
When you encounter an error like the header of this section when running
|
||||
`mkinitcpio` try first to reinstall the `linux`, `linux-headers` and
|
||||
@ -37,3 +37,13 @@ to the correct location `/boot/initramfs-linux.img` in the boot directory (back
|
||||
up the old one).
|
||||
After that reboot and it should again work fine (Source:
|
||||
[Unix Stackexchange](https://unix.stackexchange.com/questions/395402/lib-modules-4-9-8-1-arch-is-not-a-valid-kernel-module-directory)).
|
||||
|
||||
### `WARNING: Possibly missing firmware for module: ...`
|
||||
|
||||
If the warning `WARNING: Possibly missing firmware for module: ...` is shown during the process of
|
||||
rebuilding the initramfs there is a firmware package missing.
|
||||
It is not necessarily needed to install them but is recommended for the hardware to run correctly.
|
||||
A simple table that shows firmware modules and corresponding
|
||||
[Arch Linux](/wiki/linux/arch-linux.md) packages is shown on the
|
||||
[Arch Linux wiki](https://wiki.archlinux.org/title/Mkinitcpio#Possibly_missing_firmware_for_module_XXXX).
|
||||
|
||||
|
@ -19,7 +19,7 @@ It features the same syntax.
|
||||
|
||||
This section addresses various usages of the arch linux package managers.
|
||||
|
||||
### Downgrading Packages
|
||||
#### Downgrading Packages
|
||||
|
||||
Packages of the AUR can be downgraded by using the
|
||||
[Downgrade](https://github.com/archlinux-downgrade/downgrade) program.
|
||||
@ -62,12 +62,34 @@ The cache of all packages except the one installed can be deleted by running the
|
||||
pacman -Sc
|
||||
```
|
||||
|
||||
Alternatively the pacman cache can be deleted partly by running the following command which will
|
||||
clear the cache of pacman except for the latest version.
|
||||
The amount of versions to keep can be specified by changing the number in the following command
|
||||
accordingly.
|
||||
|
||||
```sh
|
||||
paccache -rvk1
|
||||
```
|
||||
|
||||
And finally the following command will remove all cached files that belong to uninstalled packages.
|
||||
Again the number can be changed to keep a specific number of versions.
|
||||
|
||||
```sh
|
||||
paccache -rvuk0
|
||||
```
|
||||
|
||||
Since `yay` mirrors the usage of `pacman` it can be used the same way and will clean both caches.
|
||||
|
||||
```sh
|
||||
yay -Sc
|
||||
```
|
||||
|
||||
Similar to `paccache` a command called [yaycache](https://github.com/aokellermann/yaycache) can be
|
||||
used.
|
||||
It follows the same options as `paccache`.
|
||||
|
||||
The clearing of the cache can be automated by using a [hook](#hook-clear-cache).
|
||||
|
||||
#### Enabling `multilib`
|
||||
|
||||
`multilib` is a repository that contains 32-bit software and libraries.
|
||||
@ -79,6 +101,129 @@ To enable it search and uncomment the following lines in the file `/etc/pacman.c
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
```
|
||||
|
||||
#### Hooks
|
||||
|
||||
Hooks are commands that are run before or after installation of one or more packages.
|
||||
They are needed to have the `.hook` extension and can be found inside two directories.
|
||||
The first one is `/usr/share/libalpm/hooks/`.
|
||||
The second one is defined in `HookDir` inside the file `/etc/pacman.conf`.
|
||||
By default it points towards `/etc/pacman.d/hooks`.
|
||||
|
||||
Examples of hooks can be found in the following sections.
|
||||
|
||||
##### Hook: List Orphans
|
||||
|
||||
The following hook will display orphans after any package is update.
|
||||
It was found in a
|
||||
[reddit post by IBNash](https://www.reddit.com/r/archlinux/comments/dsnu81/hear_ye_archers_share_your_pacman_hooks/)
|
||||
which references a
|
||||
[gist by Strykar](https://gist.github.com/Strykar/3b3cd5bbdabe7e5c77f9414b2b4fe7e8).
|
||||
|
||||
```txt
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Operation = Remove
|
||||
Type = Package
|
||||
Target = *
|
||||
|
||||
[Action]
|
||||
Description = Searching for orphaned packages...
|
||||
When = PostTransaction
|
||||
Exec = /usr/bin/bash -c "/usr/bin/pacman -Qtd || /usr/bin/echo '==> no orphans found.'"
|
||||
```
|
||||
|
||||
##### Hook: Clear Cache
|
||||
|
||||
The following hook will [clear the pacman cache](#clear-cache) except for the last version of a package.
|
||||
It was found in a
|
||||
[reddit post by IBNash](https://www.reddit.com/r/archlinux/comments/dsnu81/hear_ye_archers_share_your_pacman_hooks/)
|
||||
which references an
|
||||
[AUR comment by itaranto](https://aur.archlinux.org/packages/pacman-cleanup-hook).
|
||||
|
||||
```txt
|
||||
[Trigger]
|
||||
Type = Package
|
||||
Operation = Remove
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Target = *
|
||||
|
||||
[Action]
|
||||
Description = Removing unnecessary cached files (keeping the latest one)...
|
||||
When = PostTransaction
|
||||
Exec = /usr/bin/paccache -rvk1 && paccache -ruvk0
|
||||
```
|
||||
|
||||
##### Hook: Informant
|
||||
|
||||
The following hook will use [informant](https://github.com/bradford-smith94/informant) to check for
|
||||
Arch News that may require manual intervention and not allow the update if there are news unread.
|
||||
It was found in a
|
||||
[reddit post by IBNash](https://www.reddit.com/r/archlinux/comments/dsnu81/hear_ye_archers_share_your_pacman_hooks/)
|
||||
which references the
|
||||
[informant Github](https://github.com/bradford-smith94/informant/blob/master/informant.hook).
|
||||
|
||||
```txt
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Type = Package
|
||||
Target = *
|
||||
Target = !informant
|
||||
|
||||
[Action]
|
||||
Description = Checking Arch News with Informant...
|
||||
When = PreTransaction
|
||||
Exec = /usr/bin/informant check
|
||||
Depends = informant
|
||||
AbortOnFail
|
||||
```
|
||||
|
||||
##### Hook: Update Package Mirrorlist
|
||||
|
||||
The following hook will use [reflector](https://xyne.dev/projects/reflector/) to update the pacman
|
||||
mirrorlist.
|
||||
It will use german mirrors (`-c de`), will list the fastest 15 mirrors (`-n 15`) and only do so if
|
||||
the mirror was online in the last 24 hours (`-a 24`).
|
||||
It was found in a
|
||||
[reddit post by IBNash](https://www.reddit.com/r/archlinux/comments/dsnu81/hear_ye_archers_share_your_pacman_hooks/)
|
||||
which references the
|
||||
[pacman-hooks Github](https://github.com/desbma/pacman-hooks/blob/master/reflector/reflector.hook).
|
||||
|
||||
```txt
|
||||
[Trigger]
|
||||
Operation = Upgrade
|
||||
Type = Package
|
||||
Target = pacman-mirrorlist
|
||||
|
||||
[Action]
|
||||
Description = Updating pacman-mirrorlist with reflector...
|
||||
When = PostTransaction
|
||||
Depends = reflector
|
||||
Exec = /bin/bash -c 'reflector -c de -n 15 -a 24 > /etc/pacman.d/mirrorlist ; test -f /etc/pacman.d/mirrorlist.pacnew && mv -v /etc/pacman.d/mirrorlist.{pacnew,orig} || true'
|
||||
```
|
||||
|
||||
##### Hook: Kernel Reboot Needed
|
||||
|
||||
The following hook will use determine if a reboot is needed because the kernel was updated.
|
||||
It was found in a
|
||||
[reddit commend by progandy](https://www.reddit.com/r/archlinux/comments/dsnu81/comment/f6sogat).
|
||||
|
||||
```txt
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Operation = Remove
|
||||
Type = File
|
||||
Target = usr/lib/modules/*
|
||||
|
||||
[Action]
|
||||
Description = Check for upgrade of running kernel...
|
||||
When = PostTransaction
|
||||
Exec = /bin/bash -c "[[ -f \"/proc/modules\" && ! -d \"/usr/lib/modules/$(uname -r)\" ]] && printf '==> WARNING: %s\n -> %s\n' 'Running kernel has been updated or removed!' 'A reboot is required!' || true"
|
||||
```
|
||||
|
||||
### Troubleshooting
|
||||
|
||||
This section addresses various uses of the pacman and yay package managers.
|
||||
|
@ -7,4 +7,6 @@ data.
|
||||
## Analysis Tools
|
||||
|
||||
- [lynis](https://github.com/CISOfy/lynis): run `lynis audit system` to get a
|
||||
list of security flaws of your system
|
||||
list of security flaws of your system
|
||||
- [arch-audit](https://gitlab.archlinux.org/archlinux/arch-audit) is a tool to find vulnerabilities
|
||||
known to the [Arch](/wiki/linux/arch-linux.md) Security Team.
|
||||
|
Loading…
x
Reference in New Issue
Block a user