Tutorial how to mount ntfs disk

kanor45

Active member
How to mount ntfs disk on Terminal

for disk 1
this code will reset after restart. if you have app2sd you can create script schedule on it.

>
#su is for superuser root permission
su
#cd is used to change directory path to work on
cd /mnt
#mkdir is use to make directory "newdisk" is the folder name
mkdir newdisk
#sda + 1,2,3 disk is separated by number sda1,sda2,sda3 3 partition in 1 disk
mount.ntfs /dev/block/sda /mnt/newdisk

for disk 2

>
#su is for superuser root permission
su
#cd is used to change directory path to work on
cd /mnt
#mkdir is use to make directory "newdisk" is the folder name
mkdir newdisk
#sdb + 1,2,3 disk is separated by number sdb1,sdb2,sdb3 3 partition in 1 disk
mount.ntfs /dev/block/sdb /mnt/newdisk

once mounted cant mount again you need to restart the downside is if directory is already mounted it will fail.
 

MrMiy4mo

Well-known member
How to mount ntfs disk on Terminal

for disk 1
this code will reset after restart. if you have app2sd you can create script schedule on it.

>
#su is for superuser root permission
su
#cd is used to change directory path to work on
cd /mnt
#mkdir is use to make directory "newdisk" is the folder name
mkdir newdisk
#sda + 1,2,3 disk is separated by number sda1,sda2,sda3 3 partition in 1 disk
mount.ntfs /dev/block/sda /mnt/newdisk

for disk 2

>
#su is for superuser root permission
su
#cd is used to change directory path to work on
cd /mnt
#mkdir is use to make directory "newdisk" is the folder name
mkdir newdisk
#sdb + 1,2,3 disk is separated by number sdb1,sdb2,sdb3 3 partition in 1 disk
mount.ntfs /dev/block/sdb /mnt/newdisk

once mounted cant mount again you need to restart the downside is if directory is already mounted it will fail.
You can create a script file and put it to ghome/gearboot/bootcomp
 

kanor45

Active member
You can create a script file and put it to ghome/gearboot/bootcomp

i never tested on ghome yet, is used the "app2sd" script manager then set it to run on boot, and also is use it to activate virt wifi then disable it so the wifi will run.
 

Xtr

Well-known member
yes, its useful too, some operating system, don't show secondary and other disk is not shown, so it could be useful to it.
You can do it without third party apps
write the following in a txt file
mkdir /mnt/windows
mount.ntfs -o ro /dev/block/sdaX /mnt/windows
And then remove . txt extension
rename the file to "mount" (you dont need to rename it to mount but you need to type the name in chmod command, no extension)
Place it in /system/etc/init.d
type this in alt+f1 terminal : chmod 777 /system/etc/init.d/<filename> (chmod 777 /system/etc/init.d/mount)
 

kanor45

Active member
You can do it without third party apps
write the following in a txt file
mkdir /mnt/windows
mount.ntfs -o ro /dev/block/sdaX /mnt/windows
And then remove . txt extension
rename the file to "mount" (you dont need to rename it to mount but you need to type the name in chmod command, no extension)
Place it in /system/etc/init.d
type this in alt+f1 terminal : chmod 777 /system/etc/init.d/<filename> (chmod 777 /system/etc/init.d/mount)
thanks, i'll test the method,
 

arth_67

New member
VC
10
How to mount ntfs disk on Terminal

for disk 1
this code will reset after restart. if you have app2sd you can create script schedule on it.

#su is for superuser root permission
su
#cd is used to change directory path to work on
cd /mnt
#mkdir is use to make directory "newdisk" is the folder name
mkdir newdisk
#sda + 1,2,3 disk is separated by number sda1,sda2,sda3 3 partition in 1 disk
mount.ntfs /dev/block/sda /mnt/newdisk

for disk 2

#su is for superuser root permission
su
#cd is used to change directory path to work on
cd /mnt
#mkdir is use to make directory "newdisk" is the folder name
mkdir newdisk
#sdb + 1,2,3 disk is separated by number sdb1,sdb2,sdb3 3 partition in 1 disk
mount.ntfs /dev/block/sdb /mnt/newdisk

once mounted cant mount again you need to restart the downside is if directory is already mounted it will fail.
i tried but it only created a folder named sda 2 but no files were showing i used gearlock to do so
 

Similar threads

Similar threads

Get Connected

Discord Server
Top