problem with my ntfs partition
#1
in my pc i have 2 hdd, one for the windows7 and one for store my movie, and the file system is NTFS.
when i boot from my XBMClive 10.0USBstick, i can't see partition for pc.WhyHuh
BlushHuhBlushHuh

sorry for my english
Reply
#2
XBMC does not mount internal disks by default. (due to risks in combination with certain advanced setups)

You need to disable nodiskmount in grub or manually mount the disk in fstab.

OR you can try this add-on I have developed. It is an early version I would like some feedback.
http://forum.xbmc.org/showthread.php?tid=89778
Reply
#3
where i found grub and the "nodiskmount".
i have on the stick /boot/grub/grub.cfg.
in grub.cfg. is this

set default=0
set timeout=10

insmod video
insmod vbe
insmod font
insmod gfxterm
set gfxmode="800x600"
if loadfont ($root)/boot/grub/unicode.pf2 ; then
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi

insmod tga
if background_image $(root)/boot/grub/splash.tga ; then
set color_normal=white/black
set color_highlight=cyan/black
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi

#echo -n "Press ESC to enter the menu... "
#if sleep --verbose --interruptible 5 ; then
# set timeout=0
#else
# set timeout=-1
#fi

menuentry "XBMCLive" {
set quiet=1
set gfxpayload="800x600"
linux /live/vmlinuz video=vesafb boot=live xbmc=autostart,nodiskmount splash quiet loglevel=0 persistent quickreboot quickusbmodules notimezone noaccessibility noapparmor noaptcdrom noautologin noxautologin noconsolekeyboard nofastboot nognomepanel nohosts nokpersonalizer nolanguageselector nolocales nonetworking nopowermanagement noprogramcrashes nojockey nosudo noupdatenotifier nouser nopolkitconf noxautoconfig noxscreensaver nopreseed union=aufs
initrd /live/initrd.img
}

menuentry "XBMCLive, SAFE MODE" {
set quiet=1
set gfxpayload=text
linux /live/vmlinuz boot=live xbmc=nodiskmount quiet loglevel=0 persistent quickreboot quickusbmodules notimezone noaccessibility noapparmor noaptcdrom noautologin noxautologin noconsolekeyboard nofastboot nognomepanel nohosts nokpersonalizer nolanguageselector nolocales nonetworking nopowermanagement noprogramcrashes nojockey nosudo noupdatenotifier nouser nopolkitconf noxautoconfig noxscreensaver nopreseed union=aufs
initrd /live/initrd.img
}

menuentry " " {
set quiet=1
}


## BEGIN INSTALLER ##

menuentry "Install XBMCLive" {
set quiet=1
set gfxpayload=text
linux /install/vmlinuz quiet preseed/file=/cdrom/install/preseed.cfg cdrom-detect/try-usb=true priority=critical --
initrd /install/initrd.gz
}

menuentry " ------ " {
set quiet=1
}

## END INSTALLER ##

menuentry "Boot Operating System on Hard Disk" {
insmod ntfs
insmod chain
insmod drivemap
set root=(hd1)
drivemap -s (hd1) (hd0)
chainloader +1
}

menuentry "Memory test (memtest86+)" {
linux16 /live/memtest
}

this file a was modifing and i cant see my NTFS drives
Reply
#4
i tried your add-on and dont work. Sad Sad Sad

i tried this function "temporaly mount any available partitions" and where i fount the mounted partiton
Reply
#5
Ok, I dont know if you are editing the wrong file or are doing something else wrong, you have to search for an instruction on how to do it.

It is possible that there is some errors in the add-on since it is an early version. However, I cannot do anything without a better error report including a debug log. If you have that post the details in the release thread.

Oh, by the way. The usb live has to have working persistance otherwise nothing will be saved.
Reply

Logout Mark Read Team Forum Stats Members Help
problem with my ntfs partition0