![]() |
2009-12-07
, 19:19
|
Posts: 145 |
Thanked: 88 times |
Joined on Nov 2009
@ Copenhagen
|
#62
|
I must be doing something wrong...
The Tilde character (~) indicating home directory doesn't seem to register in the term app.
The key press registers on the phone with a customary haptic vibration on the soft keyboard, but that's about it.
Am I missing anything? Surely, I am.
![]() |
2009-12-07
, 19:20
|
Posts: 543 |
Thanked: 181 times |
Joined on Aug 2009
@ Universe,LocalCluster.MilkyWay.Sol.Earth.Europe.Slovenia.Ljubljana
|
#63
|
gconftool-2 -s /apps/osso/xterm/key_labels -t list --list-type=string "[Tab,Esc,Up,Dn,~,|,>]" gconftool-2 -s /apps/osso/xterm/keys -t list --list-type=string "[Tab,Escape,Page_Up,Page_Down,asciitilde,bar,greater]"
![]() |
2009-12-07
, 19:21
|
|
Posts: 44 |
Thanked: 29 times |
Joined on Nov 2009
@ germany, heidelberg
|
#64
|
Can you upload your debian rootfs somewhere?
I've had a go at making it with debootstrap, but didn't quite get it done yet...
debootstrap --arch=armel --foreign lenny /mnt/
mkdir /var/chroot mount /dev/mmcblk1p2 /var/chroot/ chroot /var/chroot/ # now you are in the chroot, but you have to complete debootstrap /debootstrap/debootstrap --second-stage exit # out of chroot cp -a /etc/resolv.conf /var/chroot/etc/ cp -a /etc/hostname /var/chroot/etc/ cp -a /etc/hosts /var/chroot/etc/
![]() |
2009-12-07
, 21:18
|
Posts: 377 |
Thanked: 97 times |
Joined on Dec 2009
@ US
|
#65
|
![]() |
2009-12-12
, 20:55
|
Posts: 946 |
Thanked: 1,650 times |
Joined on Oct 2009
@ Germany
|
#66
|
http://sumoudou.org/0/5.html
sudo gainroot
cd /home/user
umount MyDocs
sfdisk -d > sf
vi sf # set 1st partition to 83
sfdisk --force /dev/mmcblk0 < sf
mkfs.ext3 /dev/mmcblk0p1
mount /dev/mmcblk0p1 /mnt
cp -a /home/* /mnt
umount /mnt
reboot; exit
cd /home/user
vi sf # set 2nd partition to c
sfdisk --force /dev/mmcblk0 < sf
mkfs.vfat -F 32 /dev/mmcblk0p2
mount -t vfat /dev/mmcblk0p2 /home/user/MyDocs
and add only
/bin/mount /home/user/MyDocs
to /etc/event.d/rcS-late before the line:
# We can safely continue booting now.
cd /home/user
umount MyDocs
dd if=/dev/zero of=FAT bs=1M seek=256 count=0 # small 256MB image
losetup /dev/loop0 FAT
mkfs.vfat -F32 /dev/loop0
vi /etc/fstab # replace /dev/mmcblk0p2 with /dev/loop0
mount MyDocs
The Following 14 Users Say Thank You to titan For This Useful Post: | ||
amin007110, BruceL, cheve, codeMonkey, cproc, Elhana, emesem, iKneaDough, Jophish, mardy, Ph0b, qole, soeiro, threema |
![]() |
2009-12-12
, 22:39
|
Posts: 543 |
Thanked: 181 times |
Joined on Aug 2009
@ Universe,LocalCluster.MilkyWay.Sol.Earth.Europe.Slovenia.Ljubljana
|
#67
|
![]() |
2009-12-13
, 10:08
|
Posts: 946 |
Thanked: 1,650 times |
Joined on Oct 2009
@ Germany
|
#68
|
Seems by default: the mmcblk0p1 partition will get exported over usb mass storage. This is the reason I kept it at 2gb vfat.
cd /home/user
umount MyDocs
dd if=/dev/zero of=FAT bs=1M seek=256 count=0 # small 256MB image
losetup /dev/loop0 FAT
mkfs.vfat -F32 /dev/loop0
vi /etc/fstab # replace /dev/mmcblk0p2 with /dev/loop0
mount MyDocs
DEV=/dev/loop0
if [ "x$STR" = "x" ]; then
echo $DEV > $LUN0
mount /home/user/MyDocs
exit 0
sfdisk -l /dev/mmcblk0 | awk \
-v home_opts="$home_opts" -v fat_opts="$fat_opts" \
-f /usr/lib/genfstab.awk > $tmp_fstab
LOFILE=/home/user/FAT
echo "/dev/loop0 /home/user/MyDocs vfat $fat_opts 0 0" >> $tmp_fstab
...
test -f "$LOFILE" && losetup /dev/loop0 "$LOFILE"
/bin/mount /home/user/MyDocs
# We can safely continue booting now.
echo "$LOFILE /home/user/MyDocs vfat loop,$fat_opts 0 0" >> $tmp_fstab
The Following 14 Users Say Thank You to titan For This Useful Post: | ||
![]() |
2009-12-13
, 10:21
|
Posts: 543 |
Thanked: 181 times |
Joined on Aug 2009
@ Universe,LocalCluster.MilkyWay.Sol.Earth.Europe.Slovenia.Ljubljana
|
#69
|
![]() |
2009-12-13
, 10:33
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#70
|
The Following User Says Thank You to qole For This Useful Post: | ||
The Tilde character (~) indicating home directory doesn't seem to register in the term app.
The key press registers on the phone with a customary haptic vibration on the soft keyboard, but that's about it.
Am I missing anything? Surely, I am.