summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2021-04-26 22:44:32 +0200
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2021-04-26 22:44:32 +0200
commitce61775812c875a9f9b81cd98c98224d9fca5134 (patch)
tree22da72db792d4fc1bfe73d06d00cc96e7e6aa13f
parent873c503d6e1b031dcb8ca57a7766eae8b3ade036 (diff)
downloadmemory-leaks-ce61775812c875a9f9b81cd98c98224d9fca5134.tar.xz
Add more setup notes for openSUSE
-rw-r--r--guides/setups/operating-systems/opensuse.org17
1 files changed, 15 insertions, 2 deletions
diff --git a/guides/setups/operating-systems/opensuse.org b/guides/setups/operating-systems/opensuse.org
index dd59dbc..9585695 100644
--- a/guides/setups/operating-systems/opensuse.org
+++ b/guides/setups/operating-systems/opensuse.org
@@ -54,8 +54,13 @@ fi
unset PAGER # breaks Python REPL in Emacs.
#+end_src
-** Unset root password
-https://en.opensuse.org/SDB:Administer_with_sudo
+** TODO Unset root password
+Following instructions from [[https://en.opensuse.org/SDB:Administer_with_sudo][the support database]]:
+- with ~visudo~, uncomment the ~%wheel ALL=(ALL) ALL~ line
+- ~sudo usermod -aG wheel $USER~
+- with ~visudo~, comment out ~Defaults targetpw~ and ~ALL ALL=(ALL)
+ ALL~
+- YaST still insists on getting the root password…
*** Fix eager ~sudo passwd -d root~
- boot on install media
- start rescue mode
@@ -95,3 +100,11 @@ delete some filesystem snapshots:
$ sudo snapper list
$ sudo snapper delete $start-$end
#+end_src
+** Add VLC codecs
+#+begin_src sh
+$ sudo zypper addrepo http://download.videolan.org/pub/vlc/SuSE/Tumbleweed VLC
+$ sudo zypper modifyrepo --refresh VLC
+$ sudo zypper install --from VLC ffmpeg vlc vlc-codecs
+#+end_src
+NB: there's a lot of prompting going on in that last command; maybe
+=--allow-vendor-change= could help.