Die VirtualBox Guest Additions werfen
Please install the gcc make perl packages from your distribution.
? Say no more! Es hilft
1 |
sudo apt install build-essential gcc make perl dkms |
Die VirtualBox Guest Additions werfen
Please install the gcc make perl packages from your distribution.
? Say no more! Es hilft
1 |
sudo apt install build-essential gcc make perl dkms |
Microsoft Defender gibt’s nicht unter Ubuntu? Gibt’s wohl, heißt mdatp, und
sudo systemctl | grep mdatp
listet die enstprechenden Services (Livescan, Quickscan, Fullscan) auf, plain
mdatp
alle verfügbaren Optionen. Interessante Logfiles wären
Es gibt noch einige Logs mehr und “v2” ist auch nicht unbedingt sprechend benannt, deshalb schreibe ich das. Meine Versino hier ist 101.51.37.
Geht nicht; no_proxy
wird komplett ignoriert:
1 |
export no_proxy=127.0.0.1,localhost,*.crusy.net |
Geht:
1 |
export no_proxy=127.0.0.1,localhost,crusy.net |
Wildcards machen den Unterschied ¯\_(ツ)_/¯
Der Prozess isectpd
ist der Scanner von Mcafee, fyi. Und wenn der viel Last erzeugt (er gehört root
, deshalb habe ich ihn erst via htop
gesehen), dann lohnt ein Blick in die konfigurierten Tasks:
1 |
$ sudo /opt/isec/ens/threatprevention/bin/isecav --listtasks |
Tasks können analog gestoppt werden:
1 |
$ sudo /opt/isec/ens/threatprevention/bin/isecav --stoptask --index 2 |
Löschen ist hier allerdings nicht möglich:
1 2 |
$ sudo /opt/isec/ens/threatprevention/bin/isecav --deltask --index 2 Cannot delete Default/ePO task from CLI. |
1 2 3 |
curl http://v2.wttr.in curl http://v2.wttr.in/Ratzeburg curl http://v2.wttr.in/{Ratzeburg,Lübeck}?format="%l:+%c+%t+%p+%w+%m" |
😍 via, auch konfigurierbar (siehe eingangs), auch im Web (natürlich), und auch gut als bash-Alias.
Auch sehr schön: WTF Util
WTF is a personal information dashboard for your terminal, developed for those who spend most of their day in the command line. […] Keep an eye on your OpsGenie schedules, Google Calendar, Git and GitHub repositories, and New Relic deployments. See who’s away in BambooHR, which Jira tickets are assigned to you, and what time it is in Barcelona. It even has weather. And clocks. And emoji.
Danke, Martin!
Hier: Über alle angeschlossenen Geräte
1 2 3 4 5 6 7 8 9 |
#!/usr/bin/env bash input="$(idevice_id --list)" IFS=$'\n' read -rd '' -a deviceIds <<<"$input" for deviceId in "${deviceIds[@]}" do echo "device id: ${deviceId}" done |
dpkg in einem Docker-Container:
1 |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y '/path/to/my.deb' |
Warum ist das cool: apt-get
(statt dpkg -i
) installiert die Dependencies gleich mit, (und -y
bestätigt automatisch), RUN DEBIAN_FRONTEND=noninteractive
verhindert Fehler à la “debconf: unable to initialize frontend: Dialog”
Bsplw. so:
1 |
$ /usr/lib/jvm/jdk1.8.0_73/bin/ControlPanel |
Wer nicht sicher ist, wo seine Java-Installation liegt:
1 |
$ dpkg -L openjdk-8-jre |
listet alle vom JDK installierten Dateien auf.