Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
25% Recurring Discount on NVMe VPS
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
CloudLinux
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Asking to borrow your weird boxes for 30 seconds: OpenVZ / LXC / Alpine / ARM / old kernels

LiBainanLiBainan Member
edited 6:58AM in General

I'm working on an Android app that monitors servers over plain SSH. It's already released, but I still need to work on compatibility. Stuff like really old kernels, I honestly have no idea what they return. My own machines are limited, and providers mostly offer recent images, so there's only so much I can test myself.

One example: I read the CPU model from the "model name" line in /proc/cpuinfo. A lot of ARM machines don't even have that line. There are more cases like this, and I want my parsing to handle them properly instead of guessing.

So, asking to borrow your boxes for half a minute. If you have an OpenVZ / LXC / Alpine / ARM / old kernel box, could you run this and paste the whole output back?

echo "--- basics"; uname -rm
echo "--- virt"; systemd-detect-virt 2>/dev/null; [ -d /proc/vz ] && echo openvz; grep -ao 'container=[a-z]*' /proc/1/environ 2>/dev/null
echo "--- cpu"; sed -n '1,12p' /proc/cpuinfo; lscpu 2>/dev/null | sed -n '1,15p'
echo "--- cpufreq"; cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq 2>/dev/null
echo "--- stat"; head -1 /proc/stat
echo "--- mem"; grep -E '^(MemTotal|MemFree|MemAvailable|Buffers|Cached|SReclaimable|SwapTotal|SwapFree)' /proc/meminfo
echo "--- cgroup"; cat /sys/fs/cgroup/memory.max 2>/dev/null; cat /sys/fs/cgroup/memory/memory.limit_in_bytes 2>/dev/null; [ -r /proc/user_beancounters ] && echo beancounters
echo "--- df"; df -TP 2>/dev/null | head -8
echo "--- diskstats"; head -6 /proc/diskstats 2>/dev/null; echo "lines=$(cat /proc/diskstats 2>/dev/null | wc -l)"
echo "--- net"; awk 'NR>2{print $1}' /proc/net/dev
echo "--- ps"; ps -eo pid=,user=,pcpu=,pmem=,args= 2>&1 | head -2; ps --version 2>&1 | head -1
echo "--- top"; top -bn1 2>&1 | head -7
echo "--- logs"; ls /var/log/auth.log /var/log/secure /var/log/messages 2>/dev/null; command -v journalctl logread 2>/dev/null; journalctl -qn1 --no-pager >/dev/null 2>&1 && echo journal-readable || echo journal-not-readable

Everything is read-only, nothing gets installed or changed, and it's not a benchmark. Root or normal user both work, just mention which one you used. If there's a line you'd rather not share, delete it. One or two outputs per machine type is plenty. Thanks!

Thanked by 1forest

Comments

  • forestforest Member

    How old is too old, and how weird is too weird?

    Thanked by 2LiBainan yoursunny
  • LiBainanLiBainan Member

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    Thanked by 1yoursunny
  • eriseris Member

    eris@tags:~$ "--- basics"; uname -rm
    echo "--- virt"; systemd-detect-virt 2>/dev/null; [ -d /proc/vz ] && echo openvz; grep -ao 'container=[a-z]*' /proc/1/environ 2>/dev/null
    echo "--- cpu"; sed -n '1,12p' /proc/cpuinfo; lscpu 2>/dev/null | sed -n '1,15p'
    echo "--- cpufreq"; cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq 2>/dev/null
    echo "--- stat"; head -1 /proc/stat
    echo "--- mem"; grep -E '^(MemTotal|MemFree|MemAvailable|Buffers|Cached|SReclaimable|SwapTotal|SwapFree)' /proc/meminfo
    echo "--- cgroup"; cat /sys/fs/cgroup/memory.max 2>/dev/null; cat /sys/fs/cgroup/memory/memory.limit_in_bytes 2>/dev/null; [ -r /proc/user_beancounters ] && echo beancounters
    echo "--- df"; df -TP 2>/dev/null | head -8
    echo "--- diskstats"; head -6 /proc/diskstats 2>/dev/null; echo "lines=$(cat /proc/diskstats 2>/dev/null | wc -l)"
    echo "--- net"; awk 'NR>2{print $1}' /proc/net/dev
    echo "--- ps"; ps -eo pid=,user=,pcpu=,pmem=,args= 2>&1 | head -2; ps --version 2>&1 | head -1
    echo "--- top"; top -bn1 2>&1 | head -7
    echo "--- logs"; ls /var/log/auth.log /var/log/secure /var/log/messages 2>/dev/null; command -v journalctl logread 2>/dev/null; journalctl -qn1 --no-pager >/dev/null 2>&1 && echo journal-readable || echo journal-not-readable
    -bash: --- basics: command not found
    6.1.0-49-arm64 aarch64
    --- virt
    kvm
    --- cpu
    processor : 0
    BogoMIPS : 50.00
    Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
    CPU implementer : 0x41
    CPU architecture: 8
    CPU variant : 0x3
    CPU part : 0xd0c
    CPU revision : 1

    processor : 1
    BogoMIPS : 50.00
    Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
    Architecture: aarch64
    CPU op-mode(s): 32-bit, 64-bit
    Byte Order: Little Endian
    CPU(s): 2
    On-line CPU(s) list: 0,1
    Vendor ID: ARM
    Model name: Neoverse-N1
    Model: 1
    Thread(s) per core: 1
    Core(s) per socket: 2
    Socket(s): 1
    Stepping: r3p1
    BogoMIPS: 50.00
    Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
    NUMA node(s): 1
    --- cpufreq
    --- stat
    cpu 98457924 72978 6223951 804006948 240210 0 16329420 0 0 0
    --- mem
    MemTotal: 3916140 kB
    MemFree: 953432 kB
    MemAvailable: 3336996 kB
    Buffers: 81796 kB
    Cached: 2351340 kB
    SwapTotal: 0 kB
    SwapFree: 0 kB
    SReclaimable: 149368 kB
    --- cgroup
    --- df
    Filesystem Type 1024-blocks Used Available Capacity Mounted on
    udev devtmpfs 1904332 0 1904332 0% /dev
    tmpfs tmpfs 391616 1124 390492 1% /run
    /dev/sda1 ext4 39052844 14671776 22744500 40% /
    tmpfs tmpfs 1958068 0 1958068 0% /dev/shm
    tmpfs tmpfs 5120 0 5120 0% /run/lock
    /dev/loop3 squashfs 63488 63488 0 100% /snap/core24/1588
    /dev/loop4 squashfs 43776 43776 0 100% /snap/snapd/26869
    --- diskstats
    11 0 sr0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    8 0 sda 525249 23028 62370554 242689 21434645 7113161 378367747 13339687 0 1938708 14216621 112201 0 177176904 39113 1906127 595131
    8 1 sda1 524792 22785 62349021 242581 21434634 7113161 378367746 13339685 0 2167248 13621373 112185 0 173186376 39106 0 0
    8 14 sda14 52 0 416 12 0 0 0 0 0 8 12 0 0 0 0 0 0
    8 15 sda15 222 243 14013 51 1 0 1 0 0 48 58 16 0 3990528 6 0 0
    7 0 loop0 59 0 2182 23 0 0 0 0 0 12 23 0 0 0 0 0 0
    lines=15
    --- net
    lo:
    eth0:
    --- ps
    1 root 0.0 0.3 /sbin/init
    2 root 0.0 0.0 [kthreadd]
    ps from procps-ng 4.0.2
    --- top
    top - 07:14:04 up 53 days, 6:26, 3 users, load average: 0.20, 0.22, 0.19
    Tasks: 116 total, 1 running, 115 sleeping, 0 stopped, 0 zombie
    %Cpu(s): 0.0 us, 0.0 sy, 0.0 ni,100.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
    MiB Mem : 3824.4 total, 929.6 free, 566.8 used, 2522.2 buff/cache
    MiB Swap: 0.0 total, 0.0 free, 0.0 used. 3257.6 avail Mem

    PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
    

    --- logs
    /usr/bin/journalctl
    journal-readable

    Hetzner CAX server

    Thanked by 1LiBainan
  • forestforest Member

    @LiBainan said:

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    --- basics
    2.6.14-hsc0ds-net armv5l
    --- virt
    --- cpu
    Processor       : ARM946E rev 0 (v5l)
    BogoMIPS        : 33.38
    Features        : swp half 26bit
    CPU implementer : 0x41
    CPU architecture: undefined/unknown
    CPU variant     : 0x0
    CPU part        : 0x946
    CPU revision    : 0
    Cache type      : write-back
    Cache clean     : cp15 c7 ops
    Cache lockdown  : format B
    Cache format    : Harvard
    --- cpufreq
    --- stat
    1 (init) S 0 0 0 0 -1 256 0 0 0 0 0 31 6 59 16 0 1 0 946684800270 0 0 0 663555 33752332 0 0 0 0 0 0
    --- mem
    MemTotal:         1352 kB
    MemFree:           372 kB
    Buffers:            32 kB
    Cached:             40 kB
    SwapTotal:           0 kB
    SwapFree:            0 kB
    --- cgroup
    --- df
    --- diskstats
      31    0 mtdblock0  134 0 268 50 0 0 0 0 0 50 50
      31    1 mtdblock1  0 0 0 0 0 0 0 0 0 0 0
    wc: not found
    --- net
    awk: not found
    --- ps
      PID  Uid     VmSize Stat Command
        1 root            SW   /sbin/init
      PID  Uid     VmSize Stat Command
    --- top
    --- logs
    journal-not-readable
    
    Thanked by 1LiBainan
  • LiBainanLiBainan Member

    @eris said:
    eris@tags:~$ "--- basics"; uname -rm
    echo "--- virt"; systemd-detect-virt 2>/dev/null; [ -d /proc/vz ] && echo openvz; grep -ao 'container=[a-z]*' /proc/1/environ 2>/dev/null
    echo "--- cpu"; sed -n '1,12p' /proc/cpuinfo; lscpu 2>/dev/null | sed -n '1,15p'
    echo "--- cpufreq"; cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq 2>/dev/null
    echo "--- stat"; head -1 /proc/stat
    echo "--- mem"; grep -E '^(MemTotal|MemFree|MemAvailable|Buffers|Cached|SReclaimable|SwapTotal|SwapFree)' /proc/meminfo
    echo "--- cgroup"; cat /sys/fs/cgroup/memory.max 2>/dev/null; cat /sys/fs/cgroup/memory/memory.limit_in_bytes 2>/dev/null; [ -r /proc/user_beancounters ] && echo beancounters
    echo "--- df"; df -TP 2>/dev/null | head -8
    echo "--- diskstats"; head -6 /proc/diskstats 2>/dev/null; echo "lines=$(cat /proc/diskstats 2>/dev/null | wc -l)"
    echo "--- net"; awk 'NR>2{print $1}' /proc/net/dev
    echo "--- ps"; ps -eo pid=,user=,pcpu=,pmem=,args= 2>&1 | head -2; ps --version 2>&1 | head -1
    echo "--- top"; top -bn1 2>&1 | head -7
    echo "--- logs"; ls /var/log/auth.log /var/log/secure /var/log/messages 2>/dev/null; command -v journalctl logread 2>/dev/null; journalctl -qn1 --no-pager >/dev/null 2>&1 && echo journal-readable || echo journal-not-readable
    -bash: --- basics: command not found
    6.1.0-49-arm64 aarch64
    --- virt
    kvm
    --- cpu
    processor : 0
    BogoMIPS : 50.00
    Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
    CPU implementer : 0x41
    CPU architecture: 8
    CPU variant : 0x3
    CPU part : 0xd0c
    CPU revision : 1

    processor : 1
    BogoMIPS : 50.00
    Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
    Architecture: aarch64
    CPU op-mode(s): 32-bit, 64-bit
    Byte Order: Little Endian
    CPU(s): 2
    On-line CPU(s) list: 0,1
    Vendor ID: ARM
    Model name: Neoverse-N1
    Model: 1
    Thread(s) per core: 1
    Core(s) per socket: 2
    Socket(s): 1
    Stepping: r3p1
    BogoMIPS: 50.00
    Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
    NUMA node(s): 1
    --- cpufreq
    --- stat
    cpu 98457924 72978 6223951 804006948 240210 0 16329420 0 0 0
    --- mem
    MemTotal: 3916140 kB
    MemFree: 953432 kB
    MemAvailable: 3336996 kB
    Buffers: 81796 kB
    Cached: 2351340 kB
    SwapTotal: 0 kB
    SwapFree: 0 kB
    SReclaimable: 149368 kB
    --- cgroup
    --- df
    Filesystem Type 1024-blocks Used Available Capacity Mounted on
    udev devtmpfs 1904332 0 1904332 0% /dev
    tmpfs tmpfs 391616 1124 390492 1% /run
    /dev/sda1 ext4 39052844 14671776 22744500 40% /
    tmpfs tmpfs 1958068 0 1958068 0% /dev/shm
    tmpfs tmpfs 5120 0 5120 0% /run/lock
    /dev/loop3 squashfs 63488 63488 0 100% /snap/core24/1588
    /dev/loop4 squashfs 43776 43776 0 100% /snap/snapd/26869
    --- diskstats
    11 0 sr0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    8 0 sda 525249 23028 62370554 242689 21434645 7113161 378367747 13339687 0 1938708 14216621 112201 0 177176904 39113 1906127 595131
    8 1 sda1 524792 22785 62349021 242581 21434634 7113161 378367746 13339685 0 2167248 13621373 112185 0 173186376 39106 0 0
    8 14 sda14 52 0 416 12 0 0 0 0 0 8 12 0 0 0 0 0 0
    8 15 sda15 222 243 14013 51 1 0 1 0 0 48 58 16 0 3990528 6 0 0
    7 0 loop0 59 0 2182 23 0 0 0 0 0 12 23 0 0 0 0 0 0
    lines=15
    --- net
    lo:
    eth0:
    --- ps
    1 root 0.0 0.3 /sbin/init
    2 root 0.0 0.0 [kthreadd]
    ps from procps-ng 4.0.2
    --- top
    top - 07:14:04 up 53 days, 6:26, 3 users, load average: 0.20, 0.22, 0.19
    Tasks: 116 total, 1 running, 115 sleeping, 0 stopped, 0 zombie
    %Cpu(s): 0.0 us, 0.0 sy, 0.0 ni,100.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
    MiB Mem : 3824.4 total, 929.6 free, 566.8 used, 2522.2 buff/cache
    MiB Swap: 0.0 total, 0.0 free, 0.0 used. 3257.6 avail Mem

    PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
    

    --- logs
    /usr/bin/journalctl
    journal-readable

    Hetzner CAX server

    Exactly the ARM sample I needed, thanks. Two things I didn't expect: no cpufreq at all on the CAX, and the stock Debian image has none of the classic log files, just journald. Both noted

  • LiBainanLiBainan Member

    @forest said:

    @LiBainan said:

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    --- basics
    2.6.14-hsc0ds-net armv5l
    --- virt
    --- cpu
    Processor       : ARM946E rev 0 (v5l)
    BogoMIPS        : 33.38
    Features        : swp half 26bit
    CPU implementer : 0x41
    CPU architecture: undefined/unknown
    CPU variant     : 0x0
    CPU part        : 0x946
    CPU revision    : 0
    Cache type      : write-back
    Cache clean     : cp15 c7 ops
    Cache lockdown  : format B
    Cache format    : Harvard
    --- cpufreq
    --- stat
    1 (init) S 0 0 0 0 -1 256 0 0 0 0 0 31 6 59 16 0 1 0 946684800270 0 0 0 663555 33752332 0 0 0 0 0 0
    --- mem
    MemTotal:         1352 kB
    MemFree:           372 kB
    Buffers:            32 kB
    Cached:             40 kB
    SwapTotal:           0 kB
    SwapFree:            0 kB
    --- cgroup
    --- df
    --- diskstats
      31    0 mtdblock0  134 0 268 50 0 0 0 0 0 50 50
      31    1 mtdblock1  0 0 0 0 0 0 0 0 0 0 0
    wc: not found
    --- net
    awk: not found
    --- ps
      PID  Uid     VmSize Stat Command
        1 root            SW   /sbin/init
      PID  Uid     VmSize Stat Command
    --- top
    --- logs
    journal-not-readable
    

    ???
    1.3 MB of RAM on a 2.6.14 kernel, what even is that, a router? It doesn't have awk so my app is probably never the right tool for it, but the cpuinfo alone was worth it. Old ARM says "Processor" where everyone else says "model name". Thanks!!

  • forestforest Member

    @LiBainan said:

    @forest said:

    @LiBainan said:

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    --- basics
    2.6.14-hsc0ds-net armv5l
    --- virt
    --- cpu
    Processor       : ARM946E rev 0 (v5l)
    BogoMIPS        : 33.38
    Features        : swp half 26bit
    CPU implementer : 0x41
    CPU architecture: undefined/unknown
    CPU variant     : 0x0
    CPU part        : 0x946
    CPU revision    : 0
    Cache type      : write-back
    Cache clean     : cp15 c7 ops
    Cache lockdown  : format B
    Cache format    : Harvard
    --- cpufreq
    --- stat
    1 (init) S 0 0 0 0 -1 256 0 0 0 0 0 31 6 59 16 0 1 0 946684800270 0 0 0 663555 33752332 0 0 0 0 0 0
    --- mem
    MemTotal:         1352 kB
    MemFree:           372 kB
    Buffers:            32 kB
    Cached:             40 kB
    SwapTotal:           0 kB
    SwapFree:            0 kB
    --- cgroup
    --- df
    --- diskstats
      31    0 mtdblock0  134 0 268 50 0 0 0 0 0 50 50
      31    1 mtdblock1  0 0 0 0 0 0 0 0 0 0 0
    wc: not found
    --- net
    awk: not found
    --- ps
      PID  Uid     VmSize Stat Command
        1 root            SW   /sbin/init
      PID  Uid     VmSize Stat Command
    --- top
    --- logs
    journal-not-readable
    

    ???
    1.3 MB of RAM on a 2.6.14 kernel, what even is that, a router? It doesn't have awk so my app is probably never the right tool for it, but the cpuinfo alone was worth it. Old ARM says "Processor" where everyone else says "model name". Thanks!!

    An old, damaged screenless Nintendo DS that was repurposed as a networked sensor. And yes, CONFIG_MMU=n. :D

  • LiBainanLiBainan Member

    @forest said:

    @LiBainan said:

    @forest said:

    @LiBainan said:

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    --- basics
    2.6.14-hsc0ds-net armv5l
    --- virt
    --- cpu
    Processor       : ARM946E rev 0 (v5l)
    BogoMIPS        : 33.38
    Features        : swp half 26bit
    CPU implementer : 0x41
    CPU architecture: undefined/unknown
    CPU variant     : 0x0
    CPU part        : 0x946
    CPU revision    : 0
    Cache type      : write-back
    Cache clean     : cp15 c7 ops
    Cache lockdown  : format B
    Cache format    : Harvard
    --- cpufreq
    --- stat
    1 (init) S 0 0 0 0 -1 256 0 0 0 0 0 31 6 59 16 0 1 0 946684800270 0 0 0 663555 33752332 0 0 0 0 0 0
    --- mem
    MemTotal:         1352 kB
    MemFree:           372 kB
    Buffers:            32 kB
    Cached:             40 kB
    SwapTotal:           0 kB
    SwapFree:            0 kB
    --- cgroup
    --- df
    --- diskstats
      31    0 mtdblock0  134 0 268 50 0 0 0 0 0 50 50
      31    1 mtdblock1  0 0 0 0 0 0 0 0 0 0 0
    wc: not found
    --- net
    awk: not found
    --- ps
      PID  Uid     VmSize Stat Command
        1 root            SW   /sbin/init
      PID  Uid     VmSize Stat Command
    --- top
    --- logs
    journal-not-readable
    

    ???
    1.3 MB of RAM on a 2.6.14 kernel, what even is that, a router? It doesn't have awk so my app is probably never the right tool for it, but the cpuinfo alone was worth it. Old ARM says "Processor" where everyone else says "model name". Thanks!!

    An old, damaged screenless Nintendo DS that was repurposed as a networked sensor. And yes, CONFIG_MMU=n. :D

    Holy shit,Respect :o

    Thanked by 1forest
  • LiBainanLiBainan Member

    @forest said:

    @LiBainan said:

    @forest said:

    @LiBainan said:

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    --- basics
    2.6.14-hsc0ds-net armv5l
    --- virt
    --- cpu
    Processor       : ARM946E rev 0 (v5l)
    BogoMIPS        : 33.38
    Features        : swp half 26bit
    CPU implementer : 0x41
    CPU architecture: undefined/unknown
    CPU variant     : 0x0
    CPU part        : 0x946
    CPU revision    : 0
    Cache type      : write-back
    Cache clean     : cp15 c7 ops
    Cache lockdown  : format B
    Cache format    : Harvard
    --- cpufreq
    --- stat
    1 (init) S 0 0 0 0 -1 256 0 0 0 0 0 31 6 59 16 0 1 0 946684800270 0 0 0 663555 33752332 0 0 0 0 0 0
    --- mem
    MemTotal:         1352 kB
    MemFree:           372 kB
    Buffers:            32 kB
    Cached:             40 kB
    SwapTotal:           0 kB
    SwapFree:            0 kB
    --- cgroup
    --- df
    --- diskstats
      31    0 mtdblock0  134 0 268 50 0 0 0 0 0 50 50
      31    1 mtdblock1  0 0 0 0 0 0 0 0 0 0 0
    wc: not found
    --- net
    awk: not found
    --- ps
      PID  Uid     VmSize Stat Command
        1 root            SW   /sbin/init
      PID  Uid     VmSize Stat Command
    --- top
    --- logs
    journal-not-readable
    

    ???
    1.3 MB of RAM on a 2.6.14 kernel, what even is that, a router? It doesn't have awk so my app is probably never the right tool for it, but the cpuinfo alone was worth it. Old ARM says "Processor" where everyone else says "model name". Thanks!!

    An old, damaged screenless Nintendo DS that was repurposed as a networked sensor. And yes, CONFIG_MMU=n. :D

    @LiBainan said:

    @forest said:

    @LiBainan said:

    @forest said:

    @LiBainan said:

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    --- basics
    2.6.14-hsc0ds-net armv5l
    --- virt
    --- cpu
    Processor       : ARM946E rev 0 (v5l)
    BogoMIPS        : 33.38
    Features        : swp half 26bit
    CPU implementer : 0x41
    CPU architecture: undefined/unknown
    CPU variant     : 0x0
    CPU part        : 0x946
    CPU revision    : 0
    Cache type      : write-back
    Cache clean     : cp15 c7 ops
    Cache lockdown  : format B
    Cache format    : Harvard
    --- cpufreq
    --- stat
    1 (init) S 0 0 0 0 -1 256 0 0 0 0 0 31 6 59 16 0 1 0 946684800270 0 0 0 663555 33752332 0 0 0 0 0 0
    --- mem
    MemTotal:         1352 kB
    MemFree:           372 kB
    Buffers:            32 kB
    Cached:             40 kB
    SwapTotal:           0 kB
    SwapFree:            0 kB
    --- cgroup
    --- df
    --- diskstats
      31    0 mtdblock0  134 0 268 50 0 0 0 0 0 50 50
      31    1 mtdblock1  0 0 0 0 0 0 0 0 0 0 0
    wc: not found
    --- net
    awk: not found
    --- ps
      PID  Uid     VmSize Stat Command
        1 root            SW   /sbin/init
      PID  Uid     VmSize Stat Command
    --- top
    --- logs
    journal-not-readable
    

    ???
    1.3 MB of RAM on a 2.6.14 kernel, what even is that, a router? It doesn't have awk so my app is probably never the right tool for it, but the cpuinfo alone was worth it. Old ARM says "Processor" where everyone else says "model name". Thanks!!

    An old, damaged screenless Nintendo DS that was repurposed as a networked sensor. And yes, CONFIG_MMU=n. :D

    Holy shit,Respect :o

    @forest said:

    @LiBainan said:

    @forest said:

    @LiBainan said:

    @forest said:
    How old is too old, and how weird is too weird?

    If it runs Linux and a modern ssh client can still get in, it's not too old. CentOS 6 / old OpenVZ era is exactly the kind of stuff I'm after. Linux only though, so no FreeBSD, sorry. Containers, NAT boxes, routers, all fair game. The weirder the better

    --- basics
    2.6.14-hsc0ds-net armv5l
    --- virt
    --- cpu
    Processor       : ARM946E rev 0 (v5l)
    BogoMIPS        : 33.38
    Features        : swp half 26bit
    CPU implementer : 0x41
    CPU architecture: undefined/unknown
    CPU variant     : 0x0
    CPU part        : 0x946
    CPU revision    : 0
    Cache type      : write-back
    Cache clean     : cp15 c7 ops
    Cache lockdown  : format B
    Cache format    : Harvard
    --- cpufreq
    --- stat
    1 (init) S 0 0 0 0 -1 256 0 0 0 0 0 31 6 59 16 0 1 0 946684800270 0 0 0 663555 33752332 0 0 0 0 0 0
    --- mem
    MemTotal:         1352 kB
    MemFree:           372 kB
    Buffers:            32 kB
    Cached:             40 kB
    SwapTotal:           0 kB
    SwapFree:            0 kB
    --- cgroup
    --- df
    --- diskstats
      31    0 mtdblock0  134 0 268 50 0 0 0 0 0 50 50
      31    1 mtdblock1  0 0 0 0 0 0 0 0 0 0 0
    wc: not found
    --- net
    awk: not found
    --- ps
      PID  Uid     VmSize Stat Command
        1 root            SW   /sbin/init
      PID  Uid     VmSize Stat Command
    --- top
    --- logs
    journal-not-readable
    

    ???
    1.3 MB of RAM on a 2.6.14 kernel, what even is that, a router? It doesn't have awk so my app is probably never the right tool for it, but the cpuinfo alone was worth it. Old ARM says "Processor" where everyone else says "model name". Thanks!!

    An old, damaged screenless Nintendo DS that was repurposed as a networked sensor. And yes, CONFIG_MMU=n. :D

    nintendo legal has entered the chat

    Thanked by 2forest rpqu
  • yoursunnyyoursunny Member, IPv6 Advocate
    edited 9:37AM

    BeagleBone Black 512MB running Debian 13, unprivileged user

    --- basics
    6.16.12-bone26 armv7l
    --- virt
    none
    --- cpu
    processor   : 0
    model name  : ARMv7 Processor rev 2 (v7l)
    BogoMIPS    : 995.32
    Features    : half thumb fastmult vfp edsp thumbee neon vfpv3 tls vfpd32 
    CPU implementer : 0x41
    CPU architecture: 7
    CPU variant : 0x3
    CPU part    : 0xc08
    CPU revision    : 2
    
    Hardware    : Generic AM33XX (Flattened Device Tree)
    Revision    : 0000
    Architecture:                            armv7l
    Byte Order:                              Little Endian
    CPU(s):                                  1
    On-line CPU(s) list:                     0
    Vendor ID:                               0x41
    Model name:                              ARMv7 Processor rev 2 (v7l)
    Model:                                   2
    Thread(s) per core:                      1
    Core(s) per socket:                      1
    Socket(s):                               1
    Stepping:                                0x3
    Frequency boost:                         disabled
    CPU(s) scaling MHz:                      100%
    CPU max MHz:                             1000.0000
    CPU min MHz:                             300.0000
    --- cpufreq
    1000000
    --- stat
    cpu  716877 49438 289042 152613820 37880 0 81792 0 0 0
    --- mem
    MemTotal:         495100 kB
    MemFree:           19836 kB
    MemAvailable:     387340 kB
    Buffers:           72992 kB
    Cached:           284064 kB
    SwapTotal:        524284 kB
    SwapFree:         520704 kB
    SReclaimable:      23064 kB
    --- cgroup
    --- df
    Filesystem      Type          1024-blocks     Used     Available Capacity Mounted on
    udev            devtmpfs           216180        0        216180       0% /dev
    tmpfs           tmpfs               49512     1044         48468       3% /run
    /dev/mmcblk1p3  ext4              3050288  1889804        985588      66% /
    tmpfs           tmpfs              247548        8        247540       1% /dev/shm
    tmpfs           tmpfs                5120        0          5120       0% /run/lock
    tmpfs           tmpfs                1024        0          1024       0% /run/credentials/systemd-journald.service
    tmpfs           tmpfs                1024        0          1024       0% /run/credentials/systemd-resolved.service
    --- diskstats
       7       0 loop0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
       7       1 loop1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
       7       2 loop2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
       7       3 loop3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
       7       4 loop4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
       7       5 loop5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    lines=14
    --- net
    lo:
    eth0:
    usb0:
    --- ps
        1 root      0.0  1.9 /sbin/init
        2 root      0.0  0.0 [kthreadd]
    ps from procps-ng 4.0.4
    --- top
    top - 09:27:35 up 17 days, 19:11,  2 users,  load average: 0.11, 0.04, 0.01
    Tasks: 113 total,   1 running, 112 sleeping,   0 stopped,   0 zombie
    %Cpu(s):  6.7 us, 20.0 sy,  0.0 ni, 73.3 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st 
    MiB Mem :    483.5 total,     18.4 free,    105.0 used,    372.4 buff/cache     
    MiB Swap:    512.0 total,    508.5 free,      3.5 used.    378.4 avail Mem 
    
      PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
    --- logs
    /usr/bin/journalctl
    journal-readable
    
    Thanked by 1LiBainan
  • edited 9:36AM

    Sorry, since you don't want BSD i can't really help you. I don't have a ton of of stuff in operation right now anyways and it's usually just boring non-Intel/AMD x86 systems. Nothing very special. A Transmeta built x86 clone is pretty much as good as it gets and it's usually very simple setups that don't have much of anything exciting installed - it's basically the exact opposite. A handful of processes and a disk layout that avoids degrading the compact flash they run from. That's it.

    Thanked by 1LiBainan
  • yoursunnyyoursunny Member, IPv6 Advocate

    GL-iNet GL-AR750 router running OpenWrt 25.12.4, root user

    --- basics
    6.12.87 mips
    --- virt
    --- cpu
    system type     : Qualcomm Atheros QCA9533 ver 2 rev 0
    machine         : GL.iNet GL-AR750
    processor       : 0
    cpu model       : MIPS 24Kc V7.4
    BogoMIPS        : 432.53
    wait instruction    : yes
    microsecond timers  : yes
    tlb_entries     : 16
    extra interrupt vector  : yes
    hardware watchpoint : yes, count: 4, address/irw mask: [0x0ffc, 0x0ffc, 0x0ffb, 0x0ffb]
    isa         : mips1 mips2 mips32r1 mips32r2
    ASEs implemented    : mips16
    --- cpufreq
    --- stat
    cpu  2019581 0 1362222 125330130 179 0 4771388 0 0 0
    --- mem
    MemTotal:         120740 kB
    MemFree:           47876 kB
    MemAvailable:      34888 kB
    Buffers:            3248 kB
    Cached:            13004 kB
    SwapTotal:             0 kB
    SwapFree:              0 kB
    SReclaimable:       7364 kB
    --- cgroup
    --- df
    Filesystem           Type       1024-blocks    Used Available Capacity Mounted on
    /dev/root            squashfs        4608      4608         0 100% /rom
    tmpfs                tmpfs          60368       444     59924   1% /tmp
    /dev/mtdblock6       jffs2           8704      2964      5740  34% /overlay
    overlayfs:/overlay   overlay         8704      2964      5740  34% /
    tmpfs                tmpfs            512         0       512   0% /dev
    /dev/sdb1            ext4       239244916  47664056 179355120  21% /mnt/N
    --- diskstats
      31       0 mtdblock0 172 0 2416 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      31       1 mtdblock1 135 0 2120 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      31       2 mtdblock2 135 0 2120 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      31       3 mtdblock3 484 0 9616 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      31       4 mtdblock4 412 0 4336 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      31       5 mtdblock5 527 0 26276 9794 0 0 0 0 0 3010 9794 0 0 0 0 0 0
    lines=10
    --- net
    lo:
    eth0:
    eth1:
    br-lan:
    phy0-ap0:
    phy1-ap0:
    phy1-ap1:
    wg0:
    phy0-ap1:
    --- ps
    ps: unrecognized option: e
    BusyBox v1.37.0 (2026-05-13 22:42:09 UTC) multi-call binary.
    ps: unrecognized option: version
    --- top
    Mem: 73092K used, 47648K free, 444K shrd, 3248K buff, 13024K cached
    CPU:   0% usr   9% sys   0% nic  90% idle   0% io   0% irq   0% sirq
    Load average: 0.00 0.01 0.00 2/77 23155
      PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
    23154 23132 root     R     1440   1%   9% top -bn1
     1961  1956 network  S     5152   4%   0% /usr/sbin/hostapd -s -g /var/run/hostapd/global
     1967  1957 network  S     4992   4%   0% /usr/sbin/wpa_supplicant -n -s -g /var/run/wpa_supplicant/global
    --- logs
    journal-not-readable
    
    Thanked by 2LiBainan oloke
  • yoursunnyyoursunny Member, IPv6 Advocate

    Raspberry Pi 400 running Ubuntu 24.04, unprivileged user

    --- basics
    6.8.0-1060-raspi aarch64
    --- virt
    none
    --- cpu
    processor   : 0
    BogoMIPS    : 108.00
    Features    : fp asimd evtstrm crc32 cpuid
    CPU implementer : 0x41
    CPU architecture: 8
    CPU variant : 0x0
    CPU part    : 0xd08
    CPU revision    : 3
    
    processor   : 1
    BogoMIPS    : 108.00
    Features    : fp asimd evtstrm crc32 cpuid
    Architecture:                            aarch64
    CPU op-mode(s):                          32-bit, 64-bit
    Byte Order:                              Little Endian
    CPU(s):                                  4
    On-line CPU(s) list:                     0-3
    Vendor ID:                               ARM
    Model name:                              Cortex-A72
    Model:                                   3
    Thread(s) per core:                      1
    Core(s) per cluster:                     4
    Socket(s):                               -
    Cluster(s):                              1
    Stepping:                                r0p3
    CPU(s) scaling MHz:                      72%
    CPU max MHz:                             1800.0000
    --- cpufreq
    1800000
    --- stat
    cpu  5836857 14229 3725318 224423599 241974 0 18250 0 0 0
    --- mem
    MemTotal:        3874888 kB
    MemFree:          232436 kB
    MemAvailable:    1468652 kB
    Buffers:           79328 kB
    Cached:          1552636 kB
    SwapTotal:        262140 kB
    SwapFree:            876 kB
    SReclaimable:      97256 kB
    --- cgroup
    --- df
    Filesystem      Type          1024-blocks     Used     Available Capacity Mounted on
    tmpfs           tmpfs              387492     3952        383540       2% /run
    /dev/mmcblk0p2  ext4             29155612 15284832      12637544      55% /
    tmpfs           tmpfs             1937444    29488       1907956       2% /dev/shm
    tmpfs           tmpfs                5120        0          5120       0% /run/lock
    /dev/mmcblk0p1  vfat               516204   192225        323980      38% /boot/firmware
    //192.168.5.1/N cifs            239244916 59889792     179355124      26% /mnt/N
    tmpfs           tmpfs              387488     2544        384944       1% /run/user/1000
    --- diskstats
       7       0 loop0 17 0 37 5 0 0 0 0 0 4 5 0 0 0 0 0 0
       7       1 loop1 62 0 2210 1109 0 0 0 0 0 567 1109 0 0 0 0 0 0
       7       2 loop2 71 0 2236 770 0 0 0 0 0 494 770 0 0 0 0 0 0
       7       3 loop3 53 0 738 279 0 0 0 0 0 279 279 0 0 0 0 0 0
       7       4 loop4 1386 0 57156 4353 0 0 0 0 0 4372 4353 0 0 0 0 0 0
       7       5 loop5 63 0 2192 1293 0 0 0 0 0 553 1293 0 0 0 0 0 0
    lines=20
    --- net
    lo:
    eth0:
    wlan0:
    --- ps
          1 root      0.0  0.2 /sbin/init fixrtc
          2 root      0.0  0.0 [kthreadd]
    ps from procps-ng 4.0.4
    --- top
    top - 09:40:41 up 6 days, 19:30,  2 users,  load average: 0.41, 0.41, 0.27
    Tasks: 280 total,   1 running, 269 sleeping,   0 stopped,  10 zombie
    %Cpu(s):  3.0 us,  9.0 sy,  0.0 ni, 83.6 id,  4.5 wa,  0.0 hi,  0.0 si,  0.0 st 
    MiB Mem :   3784.1 total,    224.1 free,   2351.1 used,   1690.6 buff/cache     
    MiB Swap:    256.0 total,      1.0 free,    255.0 used.   1433.0 avail Mem 
    
        PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
    --- logs
    /var/log/auth.log
    /usr/bin/journalctl
    journal-readable
    
    Thanked by 1LiBainan
  • LiBainanLiBainan Member

    @yoursunny said:
    Raspberry Pi 400 running Ubuntu 24.04, unprivileged user

    --- basics
    6.8.0-1060-raspi aarch64
    --- virt
    none
    --- cpu
    processor : 0
    BogoMIPS  : 108.00
    Features  : fp asimd evtstrm crc32 cpuid
    CPU implementer   : 0x41
    CPU architecture: 8
    CPU variant   : 0x0
    CPU part  : 0xd08
    CPU revision  : 3
    
    processor : 1
    BogoMIPS  : 108.00
    Features  : fp asimd evtstrm crc32 cpuid
    Architecture:                            aarch64
    CPU op-mode(s):                          32-bit, 64-bit
    Byte Order:                              Little Endian
    CPU(s):                                  4
    On-line CPU(s) list:                     0-3
    Vendor ID:                               ARM
    Model name:                              Cortex-A72
    Model:                                   3
    Thread(s) per core:                      1
    Core(s) per cluster:                     4
    Socket(s):                               -
    Cluster(s):                              1
    Stepping:                                r0p3
    CPU(s) scaling MHz:                      72%
    CPU max MHz:                             1800.0000
    --- cpufreq
    1800000
    --- stat
    cpu  5836857 14229 3725318 224423599 241974 0 18250 0 0 0
    --- mem
    MemTotal:        3874888 kB
    MemFree:          232436 kB
    MemAvailable:    1468652 kB
    Buffers:           79328 kB
    Cached:          1552636 kB
    SwapTotal:        262140 kB
    SwapFree:            876 kB
    SReclaimable:      97256 kB
    --- cgroup
    --- df
    Filesystem      Type          1024-blocks     Used     Available Capacity Mounted on
    tmpfs           tmpfs              387492     3952        383540       2% /run
    /dev/mmcblk0p2  ext4             29155612 15284832      12637544      55% /
    tmpfs           tmpfs             1937444    29488       1907956       2% /dev/shm
    tmpfs           tmpfs                5120        0          5120       0% /run/lock
    /dev/mmcblk0p1  vfat               516204   192225        323980      38% /boot/firmware
    //192.168.5.1/N cifs            239244916 59889792     179355124      26% /mnt/N
    tmpfs           tmpfs              387488     2544        384944       1% /run/user/1000
    --- diskstats
       7       0 loop0 17 0 37 5 0 0 0 0 0 4 5 0 0 0 0 0 0
       7       1 loop1 62 0 2210 1109 0 0 0 0 0 567 1109 0 0 0 0 0 0
       7       2 loop2 71 0 2236 770 0 0 0 0 0 494 770 0 0 0 0 0 0
       7       3 loop3 53 0 738 279 0 0 0 0 0 279 279 0 0 0 0 0 0
       7       4 loop4 1386 0 57156 4353 0 0 0 0 0 4372 4353 0 0 0 0 0 0
       7       5 loop5 63 0 2192 1293 0 0 0 0 0 553 1293 0 0 0 0 0 0
    lines=20
    --- net
    lo:
    eth0:
    wlan0:
    --- ps
          1 root      0.0  0.2 /sbin/init fixrtc
          2 root      0.0  0.0 [kthreadd]
    ps from procps-ng 4.0.4
    --- top
    top - 09:40:41 up 6 days, 19:30,  2 users,  load average: 0.41, 0.41, 0.27
    Tasks: 280 total,   1 running, 269 sleeping,   0 stopped,  10 zombie
    %Cpu(s):  3.0 us,  9.0 sy,  0.0 ni, 83.6 id,  4.5 wa,  0.0 hi,  0.0 si,  0.0 st 
    MiB Mem :   3784.1 total,    224.1 free,   2351.1 used,   1690.6 buff/cache     
    MiB Swap:    256.0 total,      1.0 free,    255.0 used.   1433.0 avail Mem 
    
        PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
    --- logs
    /var/log/auth.log
    /usr/bin/journalctl
    journal-readable
    

    Holy crap, it's actually you! Three different archs, thank you so much, huge help. The MIPS router says "cpu model" and only x86 says "model name", my parser only knew the latter. Glad you showed up, no way I could test this myself

  • LiBainanLiBainan Member

    @yoursunny said:
    Raspberry Pi 400 running Ubuntu 24.04, unprivileged user

    --- basics
    6.8.0-1060-raspi aarch64
    --- virt
    none
    --- cpu
    processor : 0
    BogoMIPS  : 108.00
    Features  : fp asimd evtstrm crc32 cpuid
    CPU implementer   : 0x41
    CPU architecture: 8
    CPU variant   : 0x0
    CPU part  : 0xd08
    CPU revision  : 3
    
    processor : 1
    BogoMIPS  : 108.00
    Features  : fp asimd evtstrm crc32 cpuid
    Architecture:                            aarch64
    CPU op-mode(s):                          32-bit, 64-bit
    Byte Order:                              Little Endian
    CPU(s):                                  4
    On-line CPU(s) list:                     0-3
    Vendor ID:                               ARM
    Model name:                              Cortex-A72
    Model:                                   3
    Thread(s) per core:                      1
    Core(s) per cluster:                     4
    Socket(s):                               -
    Cluster(s):                              1
    Stepping:                                r0p3
    CPU(s) scaling MHz:                      72%
    CPU max MHz:                             1800.0000
    --- cpufreq
    1800000
    --- stat
    cpu  5836857 14229 3725318 224423599 241974 0 18250 0 0 0
    --- mem
    MemTotal:        3874888 kB
    MemFree:          232436 kB
    MemAvailable:    1468652 kB
    Buffers:           79328 kB
    Cached:          1552636 kB
    SwapTotal:        262140 kB
    SwapFree:            876 kB
    SReclaimable:      97256 kB
    --- cgroup
    --- df
    Filesystem      Type          1024-blocks     Used     Available Capacity Mounted on
    tmpfs           tmpfs              387492     3952        383540       2% /run
    /dev/mmcblk0p2  ext4             29155612 15284832      12637544      55% /
    tmpfs           tmpfs             1937444    29488       1907956       2% /dev/shm
    tmpfs           tmpfs                5120        0          5120       0% /run/lock
    /dev/mmcblk0p1  vfat               516204   192225        323980      38% /boot/firmware
    //192.168.5.1/N cifs            239244916 59889792     179355124      26% /mnt/N
    tmpfs           tmpfs              387488     2544        384944       1% /run/user/1000
    --- diskstats
       7       0 loop0 17 0 37 5 0 0 0 0 0 4 5 0 0 0 0 0 0
       7       1 loop1 62 0 2210 1109 0 0 0 0 0 567 1109 0 0 0 0 0 0
       7       2 loop2 71 0 2236 770 0 0 0 0 0 494 770 0 0 0 0 0 0
       7       3 loop3 53 0 738 279 0 0 0 0 0 279 279 0 0 0 0 0 0
       7       4 loop4 1386 0 57156 4353 0 0 0 0 0 4372 4353 0 0 0 0 0 0
       7       5 loop5 63 0 2192 1293 0 0 0 0 0 553 1293 0 0 0 0 0 0
    lines=20
    --- net
    lo:
    eth0:
    wlan0:
    --- ps
          1 root      0.0  0.2 /sbin/init fixrtc
          2 root      0.0  0.0 [kthreadd]
    ps from procps-ng 4.0.4
    --- top
    top - 09:40:41 up 6 days, 19:30,  2 users,  load average: 0.41, 0.41, 0.27
    Tasks: 280 total,   1 running, 269 sleeping,   0 stopped,  10 zombie
    %Cpu(s):  3.0 us,  9.0 sy,  0.0 ni, 83.6 id,  4.5 wa,  0.0 hi,  0.0 si,  0.0 st 
    MiB Mem :   3784.1 total,    224.1 free,   2351.1 used,   1690.6 buff/cache     
    MiB Swap:    256.0 total,      1.0 free,    255.0 used.   1433.0 avail Mem 
    
        PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
    --- logs
    /var/log/auth.log
    /usr/bin/journalctl
    journal-readable
    

    Fixed now, thanks again!!

  • LiBainanLiBainan Member

    @totally_not_banned said:
    Sorry, since you don't want BSD i can't really help you. I don't have a ton of of stuff in operation right now anyways and it's usually just boring non-Intel/AMD x86 systems. Nothing very special. A Transmeta built x86 clone is pretty much as good as it gets and it's usually very simple setups that don't have much of anything exciting installed - it's basically the exact opposite. A handful of processes and a disk layout that avoids degrading the compact flash they run from. That's it.

    Don't apologize! That's craftsmanship. If any of them run Linux, that's exactly what I need

Sign In or Register to comment.