LinuxOS: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Jochen (Diskussion | Beiträge) |
Jochen (Diskussion | Beiträge) |
||
| Zeile 74: | Zeile 74: | ||
<syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
pactl load-module module-bluetooth-discover | pactl load-module module-bluetooth-discover | ||
</syntaxhighlight> | |||
== Bluetooth Connection und Audio Probleme beheben == | |||
<syntaxhighlight lang="text"> | |||
sudo service bluetooth restart | |||
pulseaudio --kill | |||
pulseaudio --start | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Version vom 9. August 2017, 06:59 Uhr
Festplattenplatz anzeigen
df --total
Liste installierten Anwendungen
apt -l | more
apt -l | grep <regex>
LibreOffice deinstallieren
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
Windows Namensauflösung (WINS)
sudo apt-get install winbind
sudo apt-get install libnss-winbind
/etc/nsswitch.conf:
hosts: files mdns4_minimal [NOTFOUND=return] dns wins mdns4
sudo /etc/init.d/winbind restart
Prozess finden, der einen bestimmten Port belegt
(Entommen hier)
Beispiel:
$ lsof -i :8000
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
squid3 1289 proxy 15u IPv6 14810490 0t0 TCP *:8000 (LISTEN)
$ ps -fp 1289
UID PID PPID C STIME TTY TIME CMD
proxy 1289 1 0 09:48 ? 00:00:00 /usr/sbin/squid3 -N -f /etc/squid-deb-proxy/squid-deb-proxy.conf
Bluetooth Konfiguration
(Entnommen hier)
sudo apt-get install pulseaudio-module-bluetooth
pactl load-module module-bluetooth-discover
Bluetooth Connection und Audio Probleme beheben
sudo service bluetooth restart
pulseaudio --kill
pulseaudio --start