bonding script revised – still working on it though

#!/bin/bash # # script runs simple bonding services for eth1 to bond0 and also does reversion back to just eth1 # tested and created in fedora core 4 # PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin export PATH case $1 in ‘bond0’) # recopy bond0 files back to network scripts cp –reply yes /etc/sysconfig/network-scripts/bak/ifcfg-bond0-eth1 /etc/sysconfig/network-scripts/ifcfg-eth1 cp –reply yes /etc/sysconfig/network-scripts/bak/ifcfg-bond0 /etc/sysconfig/network-scripts/ cp … Read More

script to mount smb drives over a network

#!/bin/bash case $1 in ‘start’) mount -t smbfs -o fmask=777,dmask=777,username=xxx,password=xxx //ip addy/folder /mount location ;; ‘stop’) umount /mount location ;; *) echo “usage: $0 <start|stop>” esac usage: ./script start|stop — this script also works well when using hamachi in linux – just have to change ip addy to the system (hamachi) assigned ip address of … Read More

hacking the V3 razr (sort of part five)

how to downgrade the bootloader from 8.xx to 7.d0 on the razr (one way of doing it) ***first make a pds backup in case of failure*** 1. open flashbackup 2.61 (with the phone connected via usb) 2. in the section labeled “select loader”, select “select another”, select 32 MB (08A0).ldr 3. select “disable backup compression” … Read More

hacking the V3 razr (sort of part four)

changing the operator logo (tested with T-Mobile U.S.) 1. seem 0032_0001 –> offset 4B –> [uncheck] 6 – make sure to save 2. seem 0032_0001 –> offset 02 –> [uncheck] 1 – make sure to save 3. with p2kman, copy plmn_text_table.bin in /a/ to your pc 4. with OpEdit, open plmn_text_table.bin and sort by operator … Read More

netbsd 3 + sparc64 + new disk

straight from the bsd forums – so stop asking me how to do it bsd forum link Step 1: backup disktab, add autogenerated disk geometry to disktab (or use a seperate file for your disktab entry, see disklabel man page for info on doing this) # cd /etc # cp disktab disktab.bak # disklabel -t … Read More

pearpc config file with osx 10.3

here is the config file for pearpc ass configured on my setup: ppc_start_resolution = “1280x720x15” redraw_interval_msec = 20 ##redraw_interval_msec = 50 key_compose_dialog = “F11” key_change_cd_0 = “none” key_toggle_mouse_grab = “F12” key_toggle_full_screen = “Alt+Return” prom_bootmethod = “select” #prom_bootmethod = “force” #prom_loadfile = “test/yaboot” #prom_env_bootpath = “disk” #prom_env_bootargs = “” prom_env_machargs = “-v” prom_driver_graphic = “video.x” #page_table_pa … Read More

ipaq and familiar

i dropped linux (familiar linux) on the ipaq today. it was pretty straight forward and had it fully running within about one to two hours from begining. once the boot loader was corrected since the ipaq boot loader was to old, it was just a matter of copying the proper files to the compact flash … Read More

re-updated sources.list for apt4rpm in suse 10

rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 packman rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 packman-i686 rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 rpmkeys rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 base rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 java rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 update rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 extra rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 kde rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 gnome rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 mozilla rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 openoffice rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 suser-agirardet rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 suser-liviudm rpm ftp://ftp4.gwdg.de/pub/linux/suse/apt SuSE/10.0-i386 … Read More

aptget error and fix in suse 10 — log —

earth:/etc/apt # apt-get -f install eet Reading Package Lists… Done Building Dependency Tree… Done The following NEW packages will be installed: eet 0 upgraded, 1 newly installed, 0 removed and 640 not upgraded. Need to get 0B/25.9kB of archives. After unpacking 46.6kB of additional disk space will be used. Checking GPG signatures… Unknown signature /var/cache/apt/archives/eet_0.9.10.022-0.pm.cvs20051211_i686.rpm: … Read More