Differences
This shows you the differences between the selected revision and the current version of the page.
howto:armedslack 2008/10/19 18:30 | howto:armedslack 2017/09/06 18:38 current | ||
---|---|---|---|
Line 140: | Line 140: | ||
# sed -i '/^#[pt]/ s/#//' /etc/securetty | # sed -i '/^#[pt]/ s/#//' /etc/securetty | ||
+ | |||
==== Time zone ==== | ==== Time zone ==== | ||
- | Pick your timezone: | + | To select your timezone, run |
- | # rm /etc/localtime | + | # timeconfig |
- | # ln /usr/share/zoneinfo/Europe/Berlin /etc/localtime | + | |
Line 181: | Line 181: | ||
# chmod a-x rc.acpid rc.alsa rc.pcmcia rc.wireless rc.yp.new | # chmod a-x rc.acpid rc.alsa rc.pcmcia rc.wireless rc.yp.new | ||
# rm rc.modules-* rc.font.new | # rm rc.modules-* rc.font.new | ||
+ | |||
Line 199: | Line 200: | ||
devpts /dev/pts devpts mode=0620 0 0 | devpts /dev/pts devpts mode=0620 0 0 | ||
tmpfs /dev/shm tmpfs defaults 0 0 | tmpfs /dev/shm tmpfs defaults 0 0 | ||
+ | |||
+ | |||
+ | |||
+ | ==== fan controller ==== | ||
+ | |||
+ | Get and unpack the fanctl source code: | ||
+ | |||
+ | # cd | ||
+ | # wget http://www.inreto.de/dns323/utils/fanctl-2.tar.gz | ||
+ | # tar xzvf fanctl-2.tar.gz | ||
+ | |||
+ | Compile and install: | ||
+ | |||
+ | # cd fanctl-2 | ||
+ | # make | ||
+ | # cp fanctl /usr/sbin | ||
+ | # cp fan.conf /etc | ||
+ | |||
+ | Add fanctl to /etc/rc.d/rc.local, so it's started automatically on | ||
+ | boot: | ||
+ | |||
+ | # echo 'fanctl /etc/fan.conf >/dev/null 2>&1 </dev/null &' >>/etc/rc.d/rc.local | ||
+ | |||
Line 205: | Line 229: | ||
Finally, exit the chroot, and reboot into the firmware: | Finally, exit the chroot, and reboot into the firmware: | ||
+ | # exit | ||
# reboot | # reboot | ||
- | Start slackware with: | + | Start ARMedslack with: |
# cd /ffp/boot/ramdisks | # cd /ffp/boot/ramdisks | ||
Line 215: | Line 240: | ||
minutes. | minutes. | ||
- | The linux initramfs will search paritions for linux/sbin/init, and if found, | + | The linux initramfs will search partitions for linux/sbin/init, and if found, |
chroot and exec sbin/init. | chroot and exec sbin/init. | ||