blob: c5979cb8cb57d6b98dee533f62a39a7edd05cc19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
* HOWTO
** Open ports
#+begin_src sh
$ firewall-cmd --add-port=8000/tcp
#+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~.
** Fix broken Nvidia drivers after upgrade
Reinstall Nvidia kernel module:
#+begin_src sh
$ sudo zypper in -f nvidia-gfxG05-kmp-default
#+end_src
|