summaryrefslogtreecommitdiff
path: root/guides/sysadmin/opensuse.org
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2025-01-18 19:00:03 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2025-01-18 19:00:03 +0100
commit3eb4d872f7157b67691fb5a98e2cf53f716c5457 (patch)
treef8a994a39e359e2620ff01baa2e1096f7e0da633 /guides/sysadmin/opensuse.org
parent9398b60e08f07022cf02bb290f36718b1c744eae (diff)
downloadmemory-leaks-3eb4d872f7157b67691fb5a98e2cf53f716c5457.tar.xz
Resume gratuitous shuffling
Diffstat (limited to 'guides/sysadmin/opensuse.org')
-rw-r--r--guides/sysadmin/opensuse.org29
1 files changed, 29 insertions, 0 deletions
diff --git a/guides/sysadmin/opensuse.org b/guides/sysadmin/opensuse.org
new file mode 100644
index 0000000..5ea173c
--- /dev/null
+++ b/guides/sysadmin/opensuse.org
@@ -0,0 +1,29 @@
+* Packages
+… that took me more than one minute to find.
+** spell-checking
+- hunspell
+- myspell-fr_FR
+* HOWTO
+** Open ports
+#+begin_src sh
+$ firewall-cmd --add-port=8000/tcp
+$ firewall-cmd --add-service=mdns
+#+end_src
+To make permanent, either:
+- run the command with =--permanent=, and restart ~firewalld~ for
+ immediate application,
+- run the command /a second time/ with =--permanent=,
+- run ~firewall-cmd --runtime-to-permanent~.
+** Auto-mount second disk under =$HOME/media=
+#+begin_example
+$ lsblk --fs
+[…]
+nvme0n1
+└─nvme0n1p1 xfs […UUID…]
+$ sudo $edit /etc/fstab
+[… add:
+UUID=[…UUID…] […$HOME…]/media xfs user,exec 0 0
+…]
+$ mkdir ~/media
+$ mount ~/media
+#+end_example