Skip to main content

Primary links

  • Home
  • AI
  • Kubernetes
  • Incus
  • Ansible
  • Terraform
  • OpenStack
  • Virtualization
  • Linux
  • SmartHome
  • HowTo

Misc

  • Linux
  • Hardware
  • Programming
  • Databases
  • Multimedia
  • Windows

Cloud

  • OpenStack
  • cloud-config
  • nextcloud

Virtualization

  • Virtualization
  • Incus
  • Docker
  • KVM
  • Kubernetes
  • LXC
  • LXD
  • QEMU
  • VMware
  • VirtualBox
  • multipass
  • podman
  • vagrant
  • XEN

Network

  • DNS
  • Firewall
  • Linux
  • OpenvSwitch
  • SSL
  • VLAN
  • VPN
  • iPXE
  • namespaces
  • nmcli
  • tcpdump

Storage

  • CEPH
  • DRBD
  • LVM
  • S3
  • ZFS
  • btrfs

Automation / CI/CD

  • Install
  • Ansible
  • GitLab
  • LLM
  • Preseed
  • Puppet
  • Terraform
  • Ubuntu autoinstall

Monitoring / Visualisation

  • Grafana
  • Icinga
  • Prometheus
  • Monitoring
  • ELK
  • mermaid

IO performance benchmark script

Install
<?php
$URL="https://raw.githubusercontent.com/panticz/scripts/master/fio.sh";

echo "wget -q --no-check-certificate $URL -O - | bash -";
echo "<div><pre>";
</pre></div>

$c = curl_init();
curl_setopt($c, CURLOPT_URL, $URL);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);

echo htmlspecialchars(curl_exec($c));

curl_close($c);

echo "";

?>

ARM

SheevaPlug
http://www.panticz.de/SheevaPlug

PogoPlug
http://www.panticz.de/PogoPlug

Tegra (Toshiba AC100)
http://www.panticz.de/ac100

ZyXEL NSA320
http://www.panticz.de/ZyXEL-NSA320

Calxeda
https://wiki.ubuntu.com/ARM/Server/Install

AXIS M1144-L network camera

# configure password

Basic Setup > Users > User Settings
Enable anonymous viewer login (no user name or password required)

Basic Setup > Date & Time > Time zone
GMT+01 (Amsterdam, Berlin, Rome, Stockholm, Warsaw)

Basic Setup > Video Stream > Overlay Settings
Rotate image
180

Include date
check
Include time
check

Text background color
transparent

Detectors > Motion Detection
Add Window
slect full window

save

Events > Action Rules
Add
Name
Motion
Trigger
Detectors
Motion Detection
[0] DefaultWindow
Actions
Type
Record Video
Duration
Pre-trigger time
check
5
While the rule is active
check
Post-trigger time second
check
5
Storage
NetworkShare

OK

System Options > Storage > Network Share
Network Share
Host
srv
Share
video

connect

Recording Settings

#        Remove recordings older than
#            31
#            days

ok

Firmware
http://www.axis.com/de/techsup/cam_servers/cam_m1144l/firmware.php

Manual
http://www.axis.com/de/techsup/cam_servers/cam_m1144l/index.htm

Links
http://www.axis.com/products/cam_m1144l/index.htm

DHCPD

Add static DHCP entry

# create new entry

uci add dhcp host
uci set dhcp.@host[-1].name='srv1'
uci set dhcp.@host[-1].mac='00:01:02:25:96:99'
uci set dhcp.@host[-1].ip='192.168.2.55'
uci commit dhcp

# restart dhcpd server
/etc/init.d/dnsmasq restart

Yamaha RX-V3900

SONY TV IR CODE
12901

Ubuntu / Debian: Install and configure lm-sensors

<?php
$URL="https://raw.githubusercontent.com/panticz/installit/master/install.lm-sensors.sh";

echo "wget -q $URL -O - | bash -";
echo "<div><pre>";
</pre></div>

$c = curl_init();
curl_setopt($c, CURLOPT_URL, $URL);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);

echo htmlspecialchars(curl_exec($c));

curl_close($c);

echo "";

?>

Search for motherboard configuration

sudo dmidecode  -t baseboard | grep "Product Name"

http://www.lm-sensors.org/wiki/Configurations/

Ignore sensors

# /etc/sensors.d/f71882fg-isa-0a00

chip "f71882fg-isa-0a00"
ignore fan2
ignore fan4

Motherboard configurations

# MSI X58 Pro-E (MS-7522) / Fintek f71882fg
echo "f71882fg" >> /etc/modules
echo "#coretemp" >> /etc/modules

modprobe f71882fg

wget http://dl.panticz.de/lm-sensors/ms-7522.conf -O /etc/sensors.d/f71882fg.conf

sensors -s

# ASUS M2N32 WS Professional
cat /etc/sensors.d/asus_m2n.conf 
wget http://dl.panticz.de/lm-sensors/m2n32_ws_professional.conf -O /etc/sensors.d/m2n32_ws_professional.conf
# SuperMicro PDSMi-LN4+
wget http://dl.panticz.de/lm-sensors/pdsmi-ln4.conf -O /etc/sensors.d/pdsmi-ln4.conf

View raw sensor data
sensors -u

# default config file

/etc/sensors3.conf

# view hardwired? fan alarm value
cat /sys/class/hwmon/hwmon8/device/fan1_alarm

OPTIONAL: check with icinga
/usr/lib/nagios/plugins/check_sensors

Links
http://www.lm-sensors.org/wiki/Configurations/MSI/X58-Pro-E
http://www.lm-sensors.org/wiki/FAQ/Chapter3#HowdoIsetnewlimits

TestServer - fully automated test system

  • iPXE netboot
  • Provisioning
  • Inventory
  • Hardware test
  • Monitoring
  • Automated system installation

Sony KDL-46EX701

http://www.sony.de/support/de/product/KDL-46EX701/manuals
http://pdf.crse.com/manuals/iManuals/ger/3a-0/index.html
http://esupport.sony.com/CA/perl/support-info.pl?info_id=797&mdl=KDL46EX701
http://hackaday.com/2012/06/20/getting-root-on-a-sony-tv/

Pogoplug: Install Debian

Install Debian

# connect to PogoPlug
ssh root@192.168.2.155

ceadmin

# prepare USB flash (1GB root, 256MB swap)

printf "o\nn\np\n1\n\n+1G\nn\np\n2\n\n+256M\nt\n2\n82\nw\n" | fdisk /dev/sda

# download and execute debian installation script
cd /tmp
wget http://projects.doozan.com/debian/dockstar.debian-squeeze.sh
chmod +x dockstar.debian-squeeze.sh
export PATH=$PATH:/usr/sbin:/sbin
./dockstar.debian-squeeze.sh

ok

# login to new debian intallation
ssh root@192.168.1.X

pass: root

# change root password

passwd

Configure netconsole

# configure uBoot netconsole

fw_setenv serverip 192.168.2.199 # your desktop IP
fw_setenv ipaddr 192.168.2.1 # PogoPlug IP
fw_setenv if_netconsole 'ping $serverip'
fw_setenv start_netconsole 'setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;'
fw_setenv preboot 'run if_netconsole start_netconsole'

# start output netconsole (require http://packages.ubuntu.com/quantal/amd64/netcat-openbsd/download)

xterm -title "netconsole output" -e nc -l -u -p 6666 &

# start input netconsole

xterm -title "netconsole input" -e nc -u 192.168.2.1 6666 &

Install more programs see:
http://www.panticz.de/Pogoplug-Debian-extra-programs

# todo

diff /etc/fstab.old /etc/fstab
tmpfs /tmp tmpfs defaults 0 0
tmpfs /tmp tmpfs defaults,size=512M 0 0

Links
http://projects.doozan.com/debian/
http://forum.doozan.com/read.php?4,8277 - Rescue System V3.0
http://forum.doozan.com/read.php?3,14,14 - Use netconsole to troubleshoot uBoot without a serial cable
http://www.cyrius.com/debian/kirkwood/sheevaplug/install.html
http://forum.doozan.com/read.php?2,6300 - How To: Create an 802.11n AP (Access Point) w/ Debian on a Dockstar/Pogoplug/kirkwood device

LSI MegaRAID 9240-4i / 9260-4i perfomance

LSI MegaRAID 9240-4i / TOSHIBA MK1001TRKB SAS 1TB
1x HDD RAID0
write ? MB/s
read ? MB/s
2x HDD RAID1
write ? MB/s
read ? MB/s
4x HDD RAID5
write ~28 MB/s
read ? MB/s
4x HDD RAID10
write 300 MB/s
read ? MB/s

LSI MegaRAID 9260-4i / TOSHIBA MK1001TRKB SAS 1TB
1x HDD RAID0
write 145 MB/s
read 147 MB/s
2x HDD RAID1
write 145 MB/s
read 160 MB/s
4x HDD RAID5
write ~18 MB/s
read 430 MB/s
4x HDD RAID10
write 300 MB/s
read 300 MB/s

Pagination

  • 1
  • Next page
hardware
Profiles GitHub StackOverflow LinkedIn Xing
Contact Imprint
© panticz 2026

Cookie-Einstellungen

Diese Website nutzt eingebettete Inhalte von Drittanbietern (z.B. YouTube, SoundCloud). Beim Laden dieser Inhalte werden Daten an die jeweiligen Anbieter übermittelt. Datenverarbeitungserklärung