View Single Post
Posts: 237 | Thanked: 274 times | Joined on Jul 2010
#483
this simple script can hopefully get the mounting job done
it depends on pmount (see post 440 in this thread), and also you need to be root.

one line verison ! (well it has a loop so it isn't really a single line )

Code:
#!/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

this can be more useful if it leaves a record of what was mounted this way, so it can later be unmounted easily , here :

mount.sh

Code:
#!/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
unmount.sh

Code:
#!/bin/bash
for entry in $(cat /home/user/partitions.txt);do pumount /dev/$entry;done
Attached Files
File Type: gz scripts.tar.gz (334 Bytes, 180 views)
 

The Following 4 Users Say Thank You to ivyking For This Useful Post: