Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| computers:linux:debian [2023/10/27 12:12] – [Install my favorites] wikiadmin | computers:linux:debian [2024/01/24 01:11] (current) – [Install recoll] wikiadmin | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| ==== Install my favorites ==== | ==== Install my favorites ==== | ||
| - | < | + | < |
| + | |||
| + | ==== Install recoll ==== | ||
| + | < | ||
| + | This is my ocr script which runs ocrmypdf after I copy a newly created PDF to my document store. | ||
| + | < | ||
| + | # | ||
| + | |||
| + | find / | ||
| + | |||
| + | touch ${0} | ||
| + | |||
| + | recollindex | ||
| + | </ | ||
| ==== Change editor to vim ==== | ==== Change editor to vim ==== | ||
| Line 12: | Line 25: | ||
| ==== Install Oracle VirtualBox ==== | ==== Install Oracle VirtualBox ==== | ||
| < | < | ||
| - | sudo apt install virtualbox virtualbox-ext-pack virtualbox-guest-additions-iso | + | sudo nala install virtualbox virtualbox-ext-pack virtualbox-guest-additions-iso |
| sudo usermod -aG vboxusers $(id -un) | sudo usermod -aG vboxusers $(id -un) | ||
| </ | </ | ||
| Line 18: | Line 31: | ||
| ==== Set up flatpak ==== | ==== Set up flatpak ==== | ||
| < | < | ||
| - | sudo apt install flatpak gnome-software-plugin-flatpak | + | sudo nala install flatpak gnome-software-plugin-flatpak |
| flatpak remote-add --if-not-exists flathub https:// | flatpak remote-add --if-not-exists flathub https:// | ||
| </ | </ | ||
| Line 27: | Line 40: | ||
| ==== Configure Network ==== | ==== Configure Network ==== | ||
| I prefer to use a linux bridge for my virtual machines.\\ | I prefer to use a linux bridge for my virtual machines.\\ | ||
| - | < | + | < |
| / | / | ||
| < | < | ||
| Line 39: | Line 52: | ||
| < | < | ||
| iface br0 inet dhcp | iface br0 inet dhcp | ||
| - | hwaddress 04: | ||
| bridge_ports enp5s0 | bridge_ports enp5s0 | ||
| + | bridge_hw enp5s0 | ||
| bridge_stp off | bridge_stp off | ||
| </ | </ | ||
| Line 47: | Line 60: | ||
| < | < | ||
| sudo dpkg --add-architecture i386 | sudo dpkg --add-architecture i386 | ||
| - | sudo apt update | + | sudo nala update |
| - | sudo apt install libgl1-mesa-dri: | + | sudo nala install libgl1-mesa-dri: |
| - | sudo apt install Downloads/ | + | sudo nala install Downloads/ |
| + | |||
| + | ==== Fix fwupd-refresh.service ==== | ||
| + | I'm not sure why but after a recent install of Debian sid, the // | ||
| + | < | ||
| + | $ cat fwupd-refresh.service | ||
| + | [Unit] | ||
| + | Description=Refresh fwupd metadata and update motd | ||
| + | Documentation=man: | ||
| + | Wants=network-online.target | ||
| + | After=network-online.target | ||
| + | |||
| + | [Service] | ||
| + | Type=oneshot | ||
| + | CacheDirectory=fwupdmgr | ||
| + | DynamicUser=yes | ||
| + | StandardError=null | ||
| + | ProtectSystem=strict | ||
| + | ProtectHome=read-only | ||
| + | User=fwupd-refresh | ||
| + | RestrictAddressFamilies=AF_NETLINK AF_UNIX AF_INET AF_INET6 | ||
| + | SystemCallFilter=~@mount | ||
| + | ProtectKernelModules=yes | ||
| + | ProtectControlGroups=yes | ||
| + | RestrictRealtime=yes | ||
| + | SuccessExitStatus=2 | ||
| + | ExecStart=/ | ||
| + | </ | ||
| + | This user should have been created when the package was installed per this [[https:// | ||
| + | < | ||
| + | $ sudo adduser --quiet --system --group --no-create-home --home / | ||
