The Following 2 Users Say Thank You to soeiro For This Useful Post: | ||
![]() |
2010-07-27
, 02:48
|
|
Posts: 451 |
Thanked: 424 times |
Joined on Apr 2010
@ England
|
#32
|
![]() |
2010-09-04
, 13:50
|
Posts: 4 |
Thanked: 0 times |
Joined on Sep 2010
@ Netherlands
|
#33
|
![]() |
2010-09-04
, 13:59
|
Posts: 4 |
Thanked: 0 times |
Joined on Sep 2010
@ Netherlands
|
#34
|
![]() |
2010-09-04
, 17:18
|
Posts: 4 |
Thanked: 0 times |
Joined on Sep 2010
@ Netherlands
|
#35
|
How to make Jebba's kernel modules stay active?
.
.
.
BTW: I also changed /etc/fstab and the reboot put the original /etc/fstab in its place again.
What happened, why do the modules disappear and why is /etc/fstab restored?
![]() |
2010-09-07
, 12:27
|
Posts: 1 |
Thanked: 10 times |
Joined on Sep 2010
|
#36
|
The Following 10 Users Say Thank You to jsweiss For This Useful Post: | ||
![]() |
2011-05-17
, 16:15
|
Posts: 49 |
Thanked: 39 times |
Joined on May 2011
|
#37
|
![]() |
2012-01-03
, 02:49
|
Posts: 45 |
Thanked: 5 times |
Joined on Oct 2008
|
#38
|
sudo apt-get install cryptsetup
# unmount the SD card sudo umount /media/mmc1 # open the crypt (type your passphrase in again) sudo cryptsetup luksOpen /dev/mmcblk1 mmc1 # now add the ext3 file system inside the crypt sudo mkfs.ext3 -j -m 1 -O dir_index,filetype,sparse_super /dev/mapper/mmc1
# unmount the SD card sudo umount /media/mmc1 # format the card, use a strong passphrase! sudo cryptsetup --verbose --verify-passphrase luksFormat /dev/mmcblk1 # open the crypt (type your passphrase in again) sudo cryptsetup luksOpen /dev/mmcblk1 mmc1 # now add a file system inside the crypt - ext3 is good sudo mkfs.ext3 -j -m 1 -O dir_index,filetype,sparse_super /dev/mapper/mmc1
# drop a script in /home - couldn't get executable permission for scripts in /home/MyDocs cd ~ cd .. mkdir scripts sudo nano crypt.sh
#!/bin/sh case $1 in start) modprobe dm_crypt cryptsetup luksOpen /dev/mmcblk1p1 mmc1 echo "Mounting SD card..." mount /dev/mapper/mmc1 /media/mmc1 chmod 777 /media/mmc1 ;; stop) echo "Unmounting SD card..." umount /media/mmc1 cryptsetup luksClose /dev/mapper/mmc1 ;; *) echo "Usage: crypt [ start | stop ]" ;; esac
sudo chmod +x crypt.sh
cd /usr/sbin sudo nano oss-mmc-mount.sh
sudo ~/scripts/crypt.sh start
sudo ~/scripts/crypt.sh stop
The Following User Says Thank You to tehowe For This Useful Post: | ||
![]() |
2012-01-06
, 22:08
|
Posts: 124 |
Thanked: 105 times |
Joined on Jul 2010
|
#39
|
![]() |
2012-01-10
, 19:17
|
Posts: 45 |
Thanked: 5 times |
Joined on Oct 2008
|
#40
|
It seems that "osso-mmc-mount.sh" verifies for each file system if it is in a supported list (which only have a few allowed IDs). When I included id "83" there, and changed mmc-mount it stopped complaining. The n900 also started to mount the microSDHC automatically.
It might be the same script in your case. It might be going through all available partitions and feeding them to this script or similar...
Help improve N900, vote for:
Information about what the email client is doing
Find applications easily with tags for sub-menus
A better help system
Limit download of emails per connection type (don't fetch attachments)
A better use of internal flash