![]() |
2010-11-26
, 12:08
|
Posts: 669 |
Thanked: 433 times |
Joined on May 2010
|
#481
|
![]() |
2010-11-26
, 17:58
|
Posts: 45 |
Thanked: 17 times |
Joined on Mar 2010
|
#482
|
The Following 9 Users Say Thank You to Sonny_Jim For This Useful Post: | ||
![]() |
2010-11-26
, 20:06
|
Posts: 237 |
Thanked: 274 times |
Joined on Jul 2010
|
#483
|
#!/bin/bash for entry in $(cat /proc/partitions |awk '{print $4}'|sed -n '/[0-9]/!d; /name\|mmc\|loop/!p');do pmount /dev/$entry;done
#!/bin/bash cat /proc/partitions |awk '{print $4}'|sed -n '/[0-9]/!d; /name\|mmc\|loop/!p' > /home/user/partitions.txt for entry in $(cat /home/user/partitions.txt);do pmount /dev/$entry;done
#!/bin/bash for entry in $(cat /home/user/partitions.txt);do pumount /dev/$entry;done
The Following 4 Users Say Thank You to ivyking For This Useful Post: | ||
![]() |
2010-11-26
, 21:16
|
|
Posts: 2,473 |
Thanked: 12,265 times |
Joined on Oct 2009
@ Jerusalem, PS/IL
|
#484
|
As a quick step to making life easier when mounting USB filesystems (I hate typing more than necessary on that tiny keyboard), I've build pmount for maemo based on debian version 0.9.20, the latest that will work with debhelper version 5. I had to modify it to remove the 'user' option when mounting as this isn't supported by busybox. What this means is that you can simply type (for example):
to create the mountpoint /media/sda1 (or /media/<label> if you specified <label>) and mount /dev/sda1 on it. And similarly
to unmount and destroy the mount point.
To install (I guess if you don't know how to do this then maybe you shouldn't be trying, but really it is very easy), download the attachment to your N900 then type:
then (possibly) reboot the device to reload the user and group information. There may be a smarter way to do this, but it was easier just to reboot.
![]() |
2010-11-27
, 07:06
|
Posts: 96 |
Thanked: 80 times |
Joined on May 2010
|
#485
|
![]() |
2010-11-27
, 07:14
|
|
Posts: 2,222 |
Thanked: 12,651 times |
Joined on Mar 2010
@ SOL 3
|
#486
|
The Following User Says Thank You to joerg_rw For This Useful Post: | ||
![]() |
2010-11-27
, 07:46
|
Posts: 2,225 |
Thanked: 3,822 times |
Joined on Jun 2010
@ Florida
|
#487
|
The Following User Says Thank You to Mentalist Traceur For This Useful Post: | ||
![]() |
2010-11-27
, 13:34
|
Posts: 90 |
Thanked: 15 times |
Joined on Jul 2010
@ Bangkok
|
#488
|
![]() |
2010-11-27
, 13:45
|
|
Posts: 2,473 |
Thanked: 12,265 times |
Joined on Oct 2009
@ Jerusalem, PS/IL
|
#489
|
The Following 5 Users Say Thank You to MohammadAG For This Useful Post: | ||
![]() |
2010-11-27
, 17:02
|
|
Posts: 2,222 |
Thanked: 12,651 times |
Joined on Mar 2010
@ SOL 3
|
#490
|
Thanks for all developer who developed h-e-n, i love it.
Please clean bugs with conflict other HW like Camera.
The Following 3 Users Say Thank You to joerg_rw For This Useful Post: | ||