3. How do i format my CF card to use ext 2?
I don't know if this is necessary, but I have been using fdisk to re-partition the card to set the partition type to linux prior to running mke2fs. Essentially:
fdisk /dev/hda
p (prints the partition table)
d 1 (get rid of the default FAT16 partition)
n p 1 enter enter (make a new primary parition, #1, filling the card)
w (write the partition table)
Now run:
mke2fs /dev/hda1
and then mount it up.
This worked for me on my CF, CF microdrive, and USB drives with no problems so far.
Next, a question:
XQt/Deb works great, I have everything running well and when at work can chroot into the debian environment prior to launching XQt, export DISPLAY=1:0 and launch vncserver to get a VNC sesison running on my desktop machine. I've installed apache/mysql and GPSDrive inside the debroot and they all work great. At this point I would like to get Kismet and GPSDrive talking to each other. I have the Ambicom CF GPS and it works great on /dev/ttyS3.
Launching the gpsd that comes with qpeGPS and running the kismet under the Sharp environment (outside debian) does not work- kismet will not see the gpsd no matter what I try. The kismet.conf has been edited to support GPSD, but no go. GPSD is working, I can telnet to it and see data, qpeGPS works, and if I launch gpsd prior to chrooting into debian, I can launch GPSDrive and it sees the qpeGPSD and works great.
At this point I've searched the boards and googled my way around for hours and it appears as though either the qpeGPSD does not talk to Kismet, the complied-for-zaurus Kismet does not have GPS support built-in, or both. I've been unable to find an alternate gpsd that works, so I have one last-ditch attempt I want to make:
Use the GPSD that comes with GPSDrive.
To do this, GPSDrive needs to be able to see the Zaurus /dev/ttyS3 that is outside the debain chroot. Symlinking from the stock environment like this:
ln -sf /dev/ttyS3 /mnt/cf/debroot/dev/ttyS3
does not work.
Does anyone know how to either link or mount the Sharp /dev filesystem (like mounting the /proc system) into the Debian chroot? I'm googling my way around, but struggling...
Cheers, JJ