Skip to content

Standard Tools

Linux
  • So ein paar Sachen, die ich öfter brauche und meistens nachinstalliere.

    htop

    apt install htop
    

    7afd51d0-0289-4955-be2d-9826683bc0c6-grafik.png

    nmap

    Installation

    apt install nmap
    

    Einsatz

    root@debian:~# nmap <IP-Adresse>
    Starting Nmap 7.80 ( https://nmap.org ) at 2020-07-10 18:42 CEST
    Nmap scan report for xxxxxxxxxxxx
    Host is up (0.021s latency).
    Not shown: 995 filtered ports
    PORT     STATE  SERVICE
    22/tcp   open   ssh
    80/tcp   open   http
    443/tcp  open   https
    5060/tcp closed sip
    5061/tcp closed sip-tls
    
    Nmap done: 1 IP address (1 host up) scanned in 6.21 seconds
    

    pstree

    Installation

    apt install psmisc
    

    Einsatz

    root@debian:~# pstree
    systemd─┬─2*[agetty]
            ├─cron
            ├─dbus-daemon
            ├─dhclient───3*[{dhclient}]
            ├─rsyslogd───3*[{rsyslogd}]
            ├─sshd───sshd───sshd───bash───su───bash───pstree
            ├─systemd───(sd-pam)
            ├─systemd-journal
            ├─systemd-logind
            ├─systemd-timesyn───{systemd-timesyn}
            └─systemd-udevd
    

    wird laufend ergänzt....