Problem with mount External USB HDD with NTFS

Zengari

Vu+ User
How to make the HDD to EXT 4 ??? l am trying all the time , it wont work for me. Is there any possiblity to format on PC??
 

Zengari

Vu+ User
Now it shows HDD but it wont mount :( :( l can say , my USB is ok with /universe and /usb and HDD stays on NOT MAPPED , l have done everythihg even restarted all the time. One thing is interesting
USB is dev/sda1 and universe dev/sda2 and HDD dev/sdb5 , ...? Is this problem? How can l solve it?? Thanks in advance
 

Zengari

Vu+ User
No because all users will be penalized with a delay only because someone want to use NTFS on linux.

P.s. if that solution doesn't work:
edit file /etc/init.d/bootmisc.sh and add at the end (before the line : exit 0) the line:
Code:
mount /dev/sdc1 /media/hdd2
It did not worked for me , maybe l am doing it wrong .. Any help , any simple explanation will be good . Thanks for any help.
 

oldfox

Vu+ Newbie
This code is not for your configuration.
Try this:
mount /dev/sda1 /media/hdd
Where /dev/sda1 is your HDD (see how in the Black Hole Devices Manger) and /media/hdd (or /media/usb) - your mount point.
 

Zengari

Vu+ User
This code is not for your configuration.
Try this:
mount /dev/sda1 /media/hdd
Where /dev/sda1 is your HDD (see how in the Black Hole Devices Manger) and /media/hdd (or /media/usb) - your mount point.
on blue- blue - device manager it says NOT MAPPED and dev/sdb5 , if l login to my ftp to dev/sdb5 , l see sda,sda1 , sda2, sdb, sdb1 and sdb5 .... l am really confisued.. one more question how do l put the line to /etc/init.d/bootmisc.sh ? Can you show me an example please? sorry for asking much questions and thanks for your help.
 

oldfox

Vu+ Newbie
Make easier:
1. Format your HDD via PC in NTFS (for example) so as to have a single partition.
2. In the Black Hole Devices Manger see your HDD. (dev/sdb1 - for example).
3. Installing on your PC a text editor for UNIX-format (EditPad for example). Make it the default editor for Total Commander.
3. Connect to your receiver via FTP of Total Commander. Open the file for editing /etc/init.d/bootmisc.sh (select and press F4).
4. Enter your line (for example):
mount /dev/sdb1 /media/hdd
5. Save. The file attribute should remain the same - 755!

sda, sdb, sdc - it's available drives connected to your device.
sdb1 ... sdb5 - is available partitions on your HDD (sdb - for an example)
That's all that I can to help. :(
P.S. Excuse me for my English.
 

Zengari

Vu+ User
Make easier:
1. Format your HDD via PC in NTFS (for example) so as to have a single partition.
2. In the Black Hole Devices Manger see your HDD. (dev/sdb1 - for example).
3. Installing on your PC a text editor for UNIX-format (EditPad for example). Make it the default editor for Total Commander.
3. Connect to your receiver via FTP of Total Commander. Open the file for editing /etc/init.d/bootmisc.sh (select and press F4).
4. Enter your line (for example):
mount /dev/sdb1 /media/hdd
5. Save. The file attribute should remain the same - 755!

sda, sdb, sdc - it's available drives connected to your device.
sdb1 ... sdb5 - is available partitions on your HDD (sdb - for an example)
That's all that I can to help. :(
P.S. Excuse me for my English.
Thanks dear for your kindly answer :) , l have format on PC the HDD to EXT4 , l thougt it was best :(. l will enter the line but l dont where do l have to put exactly .. Which file must be 755 ? dev/sdb5?
really l am happy that you want to help me. Thanks anyway:)
 

oldfox

Vu+ Newbie
Your HDD (dev/sdb5) may be mounted via Black Hole Devices Manger? If not, then your disk not formatted correctly. This is the reason. Format the HDD again with a single partition.
To continue please write in oldfox_5@mail.ru
 

Zengari

Vu+ User
all done , no results :( formatted on device to (l mean on BH image) no result wont be mounted to HDD ,, any help welcome :(
 

YipMan

Vu+ User
It's the same for me USB stick 16GB, with 4 partitions and formatted in EXT4.

screenshotgad.jpg


And when I mount : sda1(media/univers) sda2(media/usb)...sda3 (...)
the vu + stuck on Starting ...


1/ here is my current fstab without mount :

rootfs / auto defaults 1 1
proc /proc proc defaults 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
usbdevfs /proc/bus/usb usbfs defaults 0 0
tmpfs /var/volatile tmpfs mode=0755 0 0
tmpfs /dev/shm tmpfs mode=0777 0 0
UUID=634febd6-73aa-494b-9a57-9311b6bf2b75 /media/usb auto defaults 0 0
UUID=a6f0444d-1e1f-4771-9178-5316c3217bdf /universe auto defaults 0 0


2/ and my bootmisc.sh :

#!/bin/sh
### BEGIN INIT INFO
# Provides: bootmisc
# Required-Start: $local_fs mountvirtfs
# Required-Stop: $local_fs
# Default-Start: S
# Default-Stop: 0 6
# Short-Description: Misc and other.
### END INIT INFO

. /etc/default/rcS
#
# Put a nologin file in /etc to prevent people from logging in before
# system startup is complete.
#
if test "$DELAYLOGIN" = yes
then
echo "System bootup in progress - please wait" > /etc/nologin
cp /etc/nologin /etc/nologin.boot
fi

#
# Set pseudo-terminal access permissions.
#
if test -c /dev/ttyp0
then
chmod 666 /dev/tty[p-za-e][0-9a-f]
chown root:tty /dev/tty[p-za-e][0-9a-f]
fi

#
# Apply /proc settings if defined
#
SYSCTL_CONF="/etc/sysctl.conf"
if [ -f "${SYSCTL_CONF}" ]
then
if [ -x "/sbin/sysctl" ]
then
/sbin/sysctl -p "${SYSCTL_CONF}"
else
echo "To have ${SYSCTL_CONF} applied during boot, install package <procps>."
fi
fi

#
# Update /etc/motd.
#
if test "$EDITMOTD" != no
then
uname -a > /etc/motd.tmp
sed 1d /etc/motd >> /etc/motd.tmp
mv /etc/motd.tmp /etc/motd
fi

#
# This is as good a place as any for a sanity check
# /tmp should be a symlink to /var/tmp to cut down on the number
# of mounted ramdisks.
if test ! -L /tmp && test -d /var/tmp
then
rm -rf /tmp
ln -sf /var/tmp /tmp
fi

# Set the system clock from hardware clock
# If the timestamp is more recent than the current time,
# use the timestamp instead.
test -x /etc/init.d/hwclock.sh && /etc/init.d/hwclock.sh start
if test -e /etc/timestamp
then
SYSTEMDATE=`date -u +%4Y%2m%2d%2H%2M`
read TIMESTAMP < /etc/timestamp
if [ ${TIMESTAMP} -gt $SYSTEMDATE ]; then
date -u ${TIMESTAMP#????}${TIMESTAMP%????????}
test -x /etc/init.d/hwclock.sh && /etc/init.d/hwclock.sh stop
fi
fi

#Black Hole
if [ -e "/bin/bh_parallel_mount" ]; then
/bin/bh_parallel_mount
fi

/usr/sbin/crond -c /etc/bhcron/

[ -e "/usr/bin/.Bhautoswap" ] && /usr/bin/.Bhautoswap
# end

: exit 0

Can you help me :help:
 

Katikakus

Vu+ User
Fantome posted the question incorrectly into a thread about HDD which probably mislead you or you just did not pay attention when reading. Anyway, we were talking about USB flash disk not HDD. :victory:
 

McrRed

Vu+ Newbie
Fantome posted the question incorrectly into a thread about HDD which probably mislead you or you just did not pay attention when reading. Anyway, we were talking about USB flash disk not HDD. :victory:

Ha. My bad. But blame fantome :mad:

Sent from my ZTE-BLADE using Tapatalk 2
 
Top