hardware

APC Back-UPS ES 700G under Ubuntu

# install
apt-get install -y apcupsd

# configure
sed -i 's|UPSCABLE smart|UPSCABLE usb|g' /etc/apcupsd/apcupsd.conf
sed -i 's|UPSTYPE apcsmart|UPSTYPE usb|g' /etc/apcupsd/apcupsd.conf
sed -i 's|DEVICE /dev/ttyS0|DEVICE|g' /etc/apcupsd/apcupsd.conf
sed -i 's|ISCONFIGURED=no|ISCONFIGURED=yes|g' /etc/default/apcupsd

# start apcupsd demon
/etc/init.d/apcupsd start

# get status
apcaccess status

# monitor
tail -f /var/log/apcupsd.events

# OPTIONAL: configure /etc/apcupsd/apccontrol

# LINKS
http://www.apcupsd.com/manual/manual.html

Kyocera FS-1010

# download PPD from Kyocera homepage
wget http://www.kyoceramita.de/dlc/de/driver/all/linux_ppd_s_ksl_8.-downloadcenteritem-Single-File.downloadcenteritem.tmp/Linux_PPDs_KSL8_4.zip -P /tmp/

# extract
unzip /tmp/Linux_PPDs_KSL8_4.zip -d /tmp

# create new printer
lpadmin -p Kyocera_FS1010 -v socket://192.168.1.11:9100 -E -P "/tmp/PPD's_KSL_8.4/German/Kyocera_Mita_FS-1010_de.ppd"
#-o PageSize=A4

Terratec Cinergy T USB XXS

# install firmware für dvbt (/lib/firmware/dvb-usb-dib0700-1.20.fw)
apt-get install linux-firmware

apt-get install kaffeine

# Links
http://kuparinen.org/martti/comp/ubuntu/en/terratecxxs.html
http://forum.xbmc.org/showthread.php?t=51945&highlight=dvb-t

Technisat TS35 IR Remote

wget http://lirc.sourceforge.net/remotes/technisat/100TS035 -O /etc/lirc/lircd.conf
mv /etc/lirc/lircd.conf /etc/lirc/lircd.conf.org

lircd --nodaemon --device="name=Formosa21 USB IR Receiver" --driver=dev/input /etc/lirc/lircd.conf

http://mythwiki.de/index.php?title=Technisat_Skystar2_mit_USB_IR-Empf%C3%A4nger
http://wiki.ubuntu-forum.de/index.php/Lirc

Kernel options

from Documentation/kernel-parameters.txt

vga=xxx
set your framebuffer resolution to VESA mode xxx. (http://en.wikipedia.org/wiki/VESA_BIOS_Extensions#Linux_video_mode_numbers)

acpi=off OR noacpi
This parameter disables the whole ACPI system. This may prove very useful, for example, if your computer does not support ACPI or if you think the ACPI implementation might cause some problems (for instance random reboots or system lockups)

acpi=force

SheevaPlug HDD susped with hdparm (Hard drive sleep mode)

apt-get install hdparm
 
cat <<EOF>> /etc/hdparm.conf
/dev/sda {
   spindown_time = 240
}
EOF

TechnoTrend Connect S2-3600 (USB DVB-S2 sat reciver) with Ubuntu 9.10

### DRIVER BROKEN??? (MY) RECIVER DONT GET ANY SIGNAL...

SIPDefault.cnf

# Firmware update
#image_version: P0S3-07-1-00
 
# Proxy Server - entweder als IP oder als FQDN
# kann fuer jede Konfigurierte Line angegeben werden
# ansonsten wird bei mehr als einer konfigurierten Line
# proxy1_address als default genommen
proxy1_address: "030.sip.arcor.de"
proxy2_address: ""
proxy3_address: ""
proxy4_address: ""
proxy5_address: ""
proxy6_address: ""
 
# Proxy Server Port (default - 5060)
proxy1_port: 5060
proxy2_port: 5060
proxy3_port: 5060
proxy4_port: 5060
proxy5_port: 5060
proxy6_port: 5060
 
# Proxy Registrierung (0-nein (default), 1-ja)
proxy_regis

Hardware Detection Tool (PXE boot)

# download image
wget http://konilope.linuxeries.org/hdt/hdt-0_3_4.c32 -P /var/lib/tftpboot/
 
# create pxe config file
cat <<EOF> /var/lib/tftpboot/pxelinux.cfg/hdt.conf 
LABEL linux
   MENU LABEL Hardware Detection Tool
   kernel hdt-0_3_4.c32
EOF
 
# add to pxe default config
echo "MENU INCLUDE pxelinux.cfg/hdt.conf" >> /var/lib/tftpboot/pxelinux.cfg/default
 
 
# Links
http://www.hdt-project.org/

HP Compaq 8710p hardware list (lshw -short)

H/W path             Device      Class          Description
===========================================================
                                 system         HP Compaq 8710p (GC101EA)
/0                               bus            30C3
/0/0                             memory         128KiB BIOS
/0/4                             processor      Intel(R) Core(TM)2 Duo CPU     T7300  @ 2.00GHz
/0/4/5                           memory         64KiB L1 cache
/0/4/6                           memory         4MiB L2 cache
/0/4/0.1                         processor      Logical CPU
/0/

Hardware Archive

lshw_short.out

H/W path               Device     Class       Description
=========================================================
                                  system      1000H
/0                                bus         1000H
/0/0                              memory      64KiB BIOS
/0/4                              processor   Intel(R) Atom(TM) CPU N270   @ 1.60GHz
/0/4/5                            memory      24KiB L1 cache
/0/4/6                            memory      512KiB L2 cache
/0/4/7                            memory      L3 cache
/0/4/1.1                          processor   Logic

Compile fcpci for Ubuntu

#!/bin/bash
 
# install needed packages
apt-get install -y wget build-essential
 
# add sources for lenny
cat <<EOF> /etc/apt/sources.list.d/lenny.list
deb http://ftp.de.debian.org/debian/ lenny main
deb-src http://ftp.de.debian.org/debian/ lenny main
EOF
 
apt-get update
apt-get install -y --force-yes linux-headers-$(uname -r)
rm /etc/apt/sources.list.d/lenny.list 
apt-get update
 
# get fcpci sources
wget https://belug.de/~lutz/pub/fcpci/fritz-fcpci-src-2.6.24-2.6.28.tar.bz2 -P /tmp
 
# configure for 64 bit (only for amd64)
tar xjf /tmp/fritz-fcpci-src-2.6.24-2.6.28.tar.bz2 -C

firmware.xml

<?xml version="1.0" encoding="utf-8" ?>
<firmware-settings>
  <firmware perm="R">http://provisioning.snom.com/release/update.php</firmware>
</firmware-settings>

snom3x0-001112131415.xml

<?xml version="1.0" encoding="utf-8"?>
 <phone-settings>
  <user_pname idx="1" perm="R">ekiga</user_pname>
  <user_pass idx="1" perm="R">ekiga</user_pass>
  <user_name idx="1" perm="R">ekiga</user_name>
  <user_realname idx="1" perm="R">Ekiga</user_realname>
  <user_host idx="1" perm="R">asterisk</user_host>
</phone-settings>

tbook.xml

<?xml version="1.0" encoding="utf-8"?>
 <tbook>
  <item context="line1" type="none" index="0">
   <name>USER1</name>
   <number>555-SHOE</number>
  </item>
</tbook>

fkeys.xml

<?xml version="1.0" encoding="utf-8"?>
<functionKeys>
 <fkey idx="0" context="active" perm="">speed ekiga</fkey>
 <fkey idx="1" context="active" perm="">speed user1</fkey>
 <fkey idx="2" context="active" perm="">speed user2</fkey>
</functionKeys>

general.xml

<?xml version="1.0" encoding="utf-8"?>
 <phone-settings>
  <language perm="RW">Deutsch</language>
  <tone_scheme perm="R">GER</tone_scheme>
  <timezone perm="R">GER+1</timezone>
  <date_us_format perm="R">off</date_us_format>
  <time_24_format perm="R">on</time_24_format>
  <contrast perm="R">26</contrast>
  <user_ringer idx="1" perm="RW">Ringer7</user_ringer>
 
  <update_policy perm="R">auto_update</update_policy>
  <firmware_interval perm="R">2880 </firmware_interval>
</phone-settings>

snom3x0.xml

<?xml version="1.0" encoding="utf-8" ?>
<setting-files>
<file url="http://provisioning.snom.com/config/gui_lang.xml"/>
<file url="http://fs/snom3x0/general.xml"/>
<file url="http://fs/snom3x0/fkeys.xml"/>
<file url="http://fs/snom3x0/tbook.xml"/>
<file url="http://fs/snom3x0/snom3x0-{mac}.xml"/>
<!-- <file url="http://fs/snom3x0/firmware.xml"/> -->
</setting-files>

Do you like this page? Then support it. Please click the AD below and visit the sponsor. Thank you!

Syndicate content