commit ce61775812c875a9f9b81cd98c98224d9fca5134 parent 873c503d6e1b031dcb8ca57a7766eae8b3ade036 Author: Kévin Le Gouguec <kevin.legouguec@gmail.com> Date: Mon, 26 Apr 2021 22:44:32 +0200 Add more setup notes for openSUSE Diffstat:
| M | guides/setups/operating-systems/opensuse.org | | | 17 | +++++++++++++++-- |
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git 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.