commit 4c416127f6a188c320c0ff551d984162ffe9c460
parent 887b15efa8c120129f94138e4ce5e8460f9db2fa
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date: Fri, 3 Oct 2025 09:02:38 +0200
Hierarchize openSUSE HOWTOs
Diffstat:
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/guides/sysadmin/opensuse.org b/guides/sysadmin/opensuse.org
@@ -4,17 +4,8 @@
- 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=
+** Disks
+*** Auto-mount second disk under =$HOME/media=
#+begin_example
$ lsblk --fs
[…]
@@ -27,3 +18,14 @@ UUID=[…UUID…] […$HOME…]/media xfs user,exec 0 0
$ mkdir ~/media
$ mount ~/media
#+end_example
+** Network
+*** 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~.