WhiteWolf
|
2010-11-12
, 10:37
|
Posts: 561 |
Thanked: 75 times |
Joined on Jan 2010
@ Spain
|
#261
|
|
2010-11-12
, 10:41
|
Posts: 559 |
Thanked: 166 times |
Joined on Jan 2010
@ Cyprus
|
#262
|
The latest update of "hen" has caused me not detect or activate any USB device.
|
2010-11-12
, 11:16
|
Posts: 561 |
Thanked: 75 times |
Joined on Jan 2010
@ Spain
|
#263
|
|
2010-11-12
, 11:25
|
|
Posts: 2,142 |
Thanked: 2,054 times |
Joined on Dec 2006
@ Sicily
|
#264
|
#!/bin/sh monta() { echo mounting lista=`awk '$4~"[0-9]$"{print $4}' /proc/partitions | grep -v "mmcblk*" | grep -v "loop*"` for partitions in $lista do echo mkdir -p $partitions mkdir -p /media/$partitions echo mount /dev/$partitions /media/$partitions mount /dev/$partitions /media/$partitions done } unmount() { echo unmounting lista=`awk '$4~"[0-9]$"{print $4}' /proc/partitions | grep -v "mmcblk*" | grep -v "loop*"` for partitions in $lista do echo umount /media/$partitions umount /media/$partitions done } if [ "$1" = "--mount" ] then monta fi if [ "$1" = "--unmount" ] then unmount fi exit
The Following 2 Users Say Thank You to debernardis For This Useful Post: | ||
|
2010-11-12
, 12:27
|
|
Posts: 584 |
Thanked: 700 times |
Joined on Jan 2010
|
#265
|
|
2010-11-12
, 12:33
|
Posts: 137 |
Thanked: 150 times |
Joined on Jan 2010
|
#266
|
|
2010-11-12
, 13:14
|
Posts: 434 |
Thanked: 245 times |
Joined on Jan 2010
|
#267
|
|
2010-11-12
, 13:21
|
Posts: 137 |
Thanked: 150 times |
Joined on Jan 2010
|
#268
|
I am getting "Forced hostmode error: no device attached" with anything I try.
|
2010-11-12
, 14:00
|
Posts: 559 |
Thanked: 166 times |
Joined on Jan 2010
@ Cyprus
|
#269
|
|
2010-11-12
, 14:18
|
Posts: 201 |
Thanked: 96 times |
Joined on Dec 2009
|
#270
|