Skip to main content

Primary links

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

Misc

  • Linux
  • Hardware
    • APC Back-UPS ES 700G
    • ARM
    • AVM
    • AX88772A Fast Ethernet USB Adapter
    • AXIS M1144-L
    • Adaptec RAID controller
    • Android
    • Archive
      • DataLogic QS6500
      • Epson B-310N / Epson B-500DN
      • HP Compaq t5720
      • HP ProCurve 2524
      • Huawei UMTS USB Stick
      • Linksys SPA921
      • Linux For Tegra
      • PogoPlug
      • SheevaPlug
        • Debian
        • Install IpFire on SheevaPlug
        • Ubuntu
      • Synology DiskStation DS411+
      • Toshiba Tegra AC100
      • Yamaha DSP-AX1
    • Arduino
    • Bionx
    • Bluetooth
    • Brother
    • Cisco
    • DCPMM / NVRAM
    • Dell
    • ESP32 / ESP8266
    • HP (Hewlett Packard)
    • IPMI
    • Intel NVMe
    • LSI MegaRAID
    • Lenovo ThinkPad
    • Linpack
    • Linux Benchmark
    • Logitech Squeezebox Touch
    • Logitech
    • Mellanox
    • Micron
    • NVMe
    • OpenWRT
    • RaLink RT2500
    • Raspberry Pi
    • SmartHome
    • Snom 320 / 370
    • Solar
    • Sony KDL-55EX725
    • Supermicro
    • Surface
    • TEMPer (usb temperatur)
    • USB Serial adapter
    • Ubiquiti
    • Update Intel NIC firmware
    • Yamaha
    • ZyXEL NSA320
    • ahoy DTU
    • batteries
    • hdparm
    • iDRAC
    • memtest86+
    • smartmontools
  • 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
! DEPRECTED !


sudo apt-get install rootstock
sudo apt-get install -y qemu qemu-kvm-extras debootstrap

# download
#wget http://launchpad.net/project-rootstock/trunk/0.1/+download/rootstock-0.1.3.tar.gz -P /tmp
wget http://launchpadlibrarian.net/44368389/rootstock-0.1.99.3.tar.gz -P /tmp

# extract
#tar xzf /tmp/rootstock-0.1.3.tar.gz -C /tmp/
tar xzf /tmp/rootstock-0.1.99.3.tar.gz -C /tmp/

# build
#sudo /tmp/rootstock-*/rootstock -f sheevaplug -l sheevaplug -p terceS -d jaunty --serial ttyS0 --seed ssh
sudo /tmp/rootstock-*/rootstock -f sheevaplug -l sheevaplug -p terceS -d oneiric --serial ttyS0 --seed ssh

# format sd card
http://www.panticz.de/Install-Debian-on-SheevaPlug

# mount sd card
mount /dev/mmcblk0p1 /mnt/

# extrackt to sd card
tar xzf armel-rootfs-*.tgz  -C /mnt/

# get debian kernel
wget http://people.debian.org/~tbm/sheevaplug/lenny/base.tar.bz2 -P /tmp
tar xjf /tmp/base.tar.bz2 -C /tmp/
cp -a /tmp/boot/* /mnt/boot/
cp -a /tmp/lib/modules/2.6.32-5-kirkwood/ /mnt/lib/modules/


mv /mnt/boot/uImage  /mnt/boot/uImage.old

#wget http://sheeva.with-linux.com/sheeva/2.6.32.2/sheeva-2.6.32.2-uImage -P /mnt/boot/
wget http://sheeva.with-linux.com/sheeva/3/3.1/3.1.2/sheeva-3.1.2-uImage -P /mnt/boot/uImage

#wget http://sheeva.with-linux.com/sheeva/2.6.32.2/sheeva-2.6.32.2-Modules.tar.gz -P /tmp/
wget http://sheeva.with-linux.com/sheeva/3/3.1/3.1.2/sheeva-3.1.2-Modules.tar.gz -P /tmp/

#tar xzf /tmp/sheeva-2.6.32.2-Modules.tar.gz  -C /mnt/
tar xzf /tmp/sheeva-3.1.2-Modules.tar.gz -C /mnt/


cat <> /mnt/etc/network/interfaces 
auto eth0
iface eth0 inet dhcp
EOF


cd /
umount /mnt


# login
user: sheevaplug
pass: terceS

# set new password for root
passwd

# sync time
ntpdate pool.ntp.org

# update system
apt-get update
apt-get -y dist-upgrade




# Create printserver
apt-get install python
wget http://launchpadlibrarian.net/14035814/jetpipe -O /usr/sbin/jetpipe
chmod a+x /usr/sbin/jetpipe

vi /etc/rc.local
(add bevore exit 0)
/usr/sbin/jetpipe /dev/usb/lp0 9100

cat < /etc/udev/rules.d/90-printer.rules 
KERNEL=="lp*", SUBSYSTEMS=="usb", ATTRS{idVendor}=="0482", ACTION=="add", RUN+="/usr/sbin/jetpipe /dev/usb/lp0 9100"
EOF




update-rc.d mountall.sh defautls


locale-gen en_US.UTF-8
echo LANG=en_US.UTF-8 >> /etc/environment
echo LC_ALL=en_US.UTF-8 >> /etc/environment

# add mounts
cd /etc/rc0.d
ln -s ../init.d/mountall.sh K24mountall.sh
cd /etc/rc1.d
ln -s ../init.d/mountall.sh K24mountall.sh
cd /etc/rc2.d
ln -s ../init.d/mountall.sh S01mountall.sh
cd /etc/rc3.d
ln -s ../init.d/mountall.sh S01mountall.sh
cd /etc/rc4.d
ln -s ../init.d/mountall.sh S01mountall.sh
cd /etc/rc5.d
ln -s ../init.d/mountall.sh S01mountall.sh
cd /etc/rc6.d
ln -s ../init.d/mountall.sh K24mountall.sh


# create dir for apt-get
add to /etc/rc.local 
mkdir -p /var/cache/apt/archives/partial
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