LinuxOS: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Jochen (Diskussion | Beiträge) |
Jochen (Diskussion | Beiträge) |
||
| Zeile 59: | Zeile 59: | ||
UID PID PPID C STIME TTY TIME CMD | 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 | proxy 1289 1 0 09:48 ? 00:00:00 /usr/sbin/squid3 -N -f /etc/squid-deb-proxy/squid-deb-proxy.conf | ||
</syntaxhighlight> | |||
== Bluetooth Konfiguration == | |||
(Entommen [https://zach-adams.com/2014/07/bluetooth-audio-sink-stream-setup-failed/ hier]) | |||
<syntaxhighlight lang="text"> | |||
sudo apt-get install pulseaudio-module-bluetooth | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="text"> | |||
pactl load-module module-bluetooth-discover | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Version vom 24. Mai 2017, 12:16 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
(Entommen hier)
sudo apt-get install pulseaudio-module-bluetooth
pactl load-module module-bluetooth-discover