Short IT recipes

i.e. some stuff and junk about Python, Perl, Matlab, Ruby, Mac X, Linux, Solaris, ...

Thursday, June 19, 2025

Linux: join pdf files into one file in a reverse order

›
pdftk $(ls -r *.pdf) output joined.pdf
Thursday, April 10, 2025

Arch Linux: Failed to start Virtual Console Setup

›
`/etc/vconsole.conf` should be: KEYMAP=us FONT=lat9w-16
Friday, April 04, 2025

terminator: size and location in xfce4

›
terminator --geometry=2100x650+250+1150
Thursday, March 27, 2025

Convert all pdf files to txt files

›
find . -name '*.pdf' -print0 | xargs -0 -n1 pdftotext
Wednesday, November 27, 2024

Linux: ollama chagne default model location

›
Stop ollama sertice Run systemctl edit ollama.service. Add the line Environment="OLLAMA_MODELS=/path/to/new/location...
Wednesday, September 25, 2024

Joni pdf files into one file using pdftk

›
pdftk base.pdf 1.pdf 2.pdf 3*.pdf output joined.pdf
Friday, September 13, 2024

Gentoo in Distrobox

›
Dockerfile: FROM registry.hub.docker.com/gentoo/portage:latest AS build FROM registry.hub.docker.com/gentoo/stage3:systemd AS base COPY ...
Monday, September 09, 2024

Distrobox: archlinux with separate networking for installaion of VPN inside a dropbox

›
distrobox create --nvidia -i archlinux -n abox -H ~/home-abox --unshare-netns --init --additional-packages "systemd"
Sunday, September 08, 2024

Firefox open/save window does not show in flatpak

›
Make sure `xdg-desktop-portal-gtk` service is working and `xdg-desktop-portal-gtk` is disabled: https://reddit.com/r/flatpak/comments/z5nw...

Slow start Midnight Commander in distrobox

›
There are some issuse with mc's subshell in distrobox. You can start mc without it using mc --nosubshell or mc -u
›
Home
View web version
Powered by Blogger.