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

Install dvdbackup under OpenELEC

mkdir /tmp/deb
URL=http://ubuntu.mirror.cambrium.nl/ubuntu//pool/universe/d/dvdbackup/dvdbackup_0.4.2-4_amd64.deb
wget ${URL} -O /tmp/dvdbackup_amd64.deb
dpkg -x /tmp/dvdbackup_amd64.deb /tmp/deb
scp /tmp/deb/usr/bin/dvdbackup root@openelec:/storage/dvdbackup
URL=http://download.videolan.org/pub/debian/stable/libdvdcss2_1.2.13-0_amd64.deb
wget ${URL} -O /tmp/libdvdcss2_amd64.deb
dpkg -x /tmp/libdvdcss2_amd64.deb /tmp/deb
scp /tmp/deb/usr/lib/libdvdcss.so.2.1.0 root@openelec:/storage/libdvdcss.so.2
URL=http://ubuntu.mirror.cambrium.nl/ubuntu//pool/universe/libd/libdvdread/libdvdread4_4.2.0-1ubuntu4_amd64.deb
wget ${URL} -O /tmp/libdvdread4_amd64.deb
dpkg -x /tmp/libdvdread4_amd64.deb /tmp/deb
scp /tmp/deb/usr/lib/libdvdread.so.4.2.0 root@openelec:/storage/libdvdread.so.4
# rip
export PATH=${PATH}:/storage               
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/storage

[ -L /dev/dvd ] || ln -s /dev/sr0 /dev/dvd
dvdbackup -M -o /storage/videos/

get Ubuntu archives and extract
http://packages.ubuntu.com/quantal/dvdbackup
http://packages.ubuntu.com/quantal/libdvdread4
http://packages.medibuntu.org/quantal/libdvdcss2.html
http://cbalnuweit.de/?p=115

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

Magento: Fix 404 URL not found on language change in a multilanguage shop

<?php
$URL="http://www.panticz.de/sites/default/files/magento/404/magento-fix-404-on-language-change.diff";
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $URL);

Magento: Create product image sitemap

See script on my GitHub:
https://github.com/panticz/magento/blob/master/scripts/mk_sitemap_images.php

[embed_url: https://raw.githubusercontent.com/panticz/magento/master/scripts/mk_sitemap_images.php]

Install glusterfs server

<?php
$URL="http://installit.googlecode.com/hg/install.glusterfs-server.sh";

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

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

echo htmlspecialchars(curl_exec($c));

curl_close($c);

echo "";

?>

Crosscompile OpenWRT

[embed_url: https://raw.githubusercontent.com/panticz/lyc/master/scripts/compile_openwrt_ar9132.sh]

Compile for x86

sudo apt-get install -y --force-yes subversion libncurses5-dev libghc6-zlib-dev flex build-essential
cd /tmp
svn checkout svn://svn.openwrt.org/openwrt/trunk
make menuconfig

Links
http://wiki.openwrt.org/doc/howto/build
http://wiki.openwrt.org/doc/devel/crosscompile
http://wiki.openwrt.org/doc/howto/buildroot.exigence
http://www.ffnn.nl/pages/articles/linux/cgi-scripting-tips-for-bash-or-sh.php

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

Arch Linux

# AIF Configuration File

https://wiki.archlinux.org/index.php/AIF_Configuration_File

# PXE

https://releng.archlinux.org/pxeboot/#undi_pxeimage
http://releng.archlinux.org/pxeboot/boot/cfg/release64.inc.cfg

Brother MFC 7320

Install printer
[embed_url: https://raw.githubusercontent.com/panticz/installit/master/hardware/install.brother-mfc-7320.printer.sh]

Install scanner
[embed_url: https://raw.githubusercontent.com/panticz/installit/master/hardware/install.brother-mfc-7320.scanner.sh]

Scanner
First POWER OFF your Brother MFC-7320
http://www.panticz.de/sites/default/files/scripts/install.brother-mfc-7320.scanner.sh
Now you can POWER ON your Brother MFC-7320 again
Go Applications > Graphics > Simple Scan

Fax
not tested yet, see: http://wiki.ubuntuusers.de/Brother/Fax

Links
http://wiki.ubuntuusers.de/Brother/Drucker
http://wiki.ubuntuusers.de/Brother/Scanner
http://wiki.ubuntuusers.de/Brother/Fax
http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/download_prn.html#MFC-7320
http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/download_scn.html

Yamaha RX-V3800 / RX-V3900 AV-Receiver

WebGUI for Yamaha RX-V3900
http://dl.panticz.de/wlyc/wlyc3900.html
https://github.com/panticz/wlyc/blob/master/wlyc3900.html

Install and configure DLNA server for Yamaha RX-V3800

# install MiniDLNA
http://www.panticz.de/Install-MiniDLNA

# configure MiniDLNA for Yamaha PC/MCX player
sed -i 's|#notify_interval=895|notify_interval=86400|g' /etc/minidlna.conf

lyc
http://www.panticz.de/lyc

wlyc
http://www.panticz.de/wlyc

RX-D485 / RX-V485
http://www.panticz.de/yamaha/rx-d485

Spotify Connect with Spotify Free Account
https://de.yamaha.com/de/products/contents/audio_visual/musiccast/update_models.html

Pagination

  • First page
  • Previous page
  • …
  • Page 32
  • Page 33
  • Page 34
  • Page 35
  • Page 36
  • Page 37
  • Page 38
  • Page 39
  • Page 40
  • …
  • Next page
  • Last page
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