enigma2 startup

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bann32
    DK Veteran
    • Oct 2011
    • 518

    #1

    enigma2 startup

    When enigma is booting is there anyway to mount a usb flash drive and my hard drive. where woiuld i put these commands?

    and wha flles can the bmbox open without conversiob
  • IAmATeaf
    DK Veteran
    • Mar 2011
    • 591

    #2
    What image are you using?

    You can edit the file /etc/fstab and add the line(s)

    Code:
    /dev/sda1          /media/hdd            auto defaults        0 0
    /dev/sdb1          /media/usb            auto defaults        0 0
    Or you can add you can use the UUID of the actual device, this ensures that a particular device always gets mounted under a specific mount point. The example below is for my devices so won't work for you but you can get the UUIDs of your devices by typing the command blkid in a telnet window


    Code:
    UUID=168aea89-060f-425c-bb9c-1380d197cd3f          /media/hdd            auto defaults        0 0
    UUID=3fa52323-8ce6-4a57-8d8b-c51c7895e862          /media/usb            auto defaults        0 0

    Comment

    Working...