andygeezer wrote:
Also you might want to change the mounting script of the /dev/sda1 as in many cases it can be /dev/sda, something like this I guess
mount /dev/sda /home/root/naopi/games
if [ !"$(ls -A /home/root/naopi/games)" ]; then
mount /dev/sda1 /home/root/naopi/games
fi
Ok Andy, I've studied a little, can you tell me if I'm right ?
Looking for instance here (
http://www.linuxquestions.org/questions ... at-413719/) it seems sometimes the system need a "refresh" to start to see the sda1 partition. This refresh can be done, for instance, with a "fdisk -l" or "trying", like in your suggestion, to mount sda.
Then I've read here (
http://serverfault.com/questions/338937 ... d-dev-sda1) about the "superfloppy", so it could be really a filesystem without partitions and mbr.
Finally another interesting reading. Here (
http://msdn.microsoft.com/en-us/windows ... e/gg463525), speaking about the relatively new gpt, is stated about superfloppy that
Hard disk drives on external buses such as SCSI or IEEE 1394 are not considered removable.
and so they can't be superfloppy.
Ok, interesting reading of things I didn't know.
Please Andy, I'm a linux newbie so confirm me your patch is syntactically correct and I'll put on the next version.
Thanks again
Paolo