Quote (walterk1 @ Jan. 04 2007,22:37) |
Hey beakmyn, I saw your posts on the warehouse site, and followed you here. I have some dumb questions on this thread. (Maybe one day I will graduate to silly questions.) I will search for #2. 1 - did you create 3 mounts? hda1, hda2, hda3? By the responses, I see you have frugal install on hda1 and photos on hda3. What do you have on hda2? Is that the USB drive mount? 2 - is there a way with DSL to backup all the files/mucking I created following the project? (scripts, xinitrc, bootlocal files) I could backup each one, but did not know if there was a faster method. For anyone reading this thread: I too am interested in making a bulletproof frame. I wonder if I could create a script to mount hda3 as rw first, then get photos via Samba or rsync, and finally remount hda3 as ro again. Is that possible? |
Code Sample |
opt/ppp opt/bootlocal.sh opt/myiwconfig.sh opt/powerdown.sh opt/.dslrc opt/.mydsl_dir home/dsl/ /etc/ssh/ /etc/shadow |
Code Sample |
#!/bin/bash # put other system startup command here mount /dev/hda3 sudo mount /dev/hda3 -o remount,ro loadkeys us /etc/init.d/ssh start /opt/myiwconfig.sh |
Code Sample |
#!/bin/sh # # Script to set up wireless card # [EMAIL=beakmyn@frontiernet.net]beakmyn@frontiernet.net[/EMAIL] # # Set display so that script will effect the local screen export DISPLAY=:0 sudo iwconfig eth0 essid "My SSID" enc de:ea:dd:be:ef sudo pump -i eth0 exit 0 |