Tiny Core Linux
Tiny Core Base => Micro Core => Topic started by: monday66 on August 16, 2013, 02:36:13 PM
-
Hi there!!
Before you ask, yes, i searched about this already and so far i didn't find any solution.
So i'm asking it here.
I'm booting a computer with micro core on my USB and i want to access and modify the windows system.
I'm running as root these commands:
cd /mnt
mkdir windows
mount -t ntfs /dev/sda1 /mnt/windows -o "umask=000"
The windows system mounts successfully but it's READ-ONLY always!
with the umask=000 i should had read write and execute!
What should i do? I read somewhere that i must install a program called "ntfs-3g" which mounts it with write access.
But i recently learned about remastering micro core and i don't know how to repackage microcore with ntfs-3g. (don't bother pointing me to tutorials here, i have already tried them without success)
I'm not new to Linux, and i want to know why the program "mount" mounts always with read-only access.
In all the others distributions i have used the program "mount" mounts successfully with full privileges.
Thanks for your time.
-
Yes, you need to install ntfs-3g.
Since you refuse to be referred to our tutorials, you will have to figure it out yourself.
-
Yeah but why is it like this only in this distro while all the others can mount with write access?
Is the ntfs-3g the only option?
-
Core is not your normal distro. It is a toolkit.
You have to be willing to read the online documentation.
Since you are booting from a USB drive, you can have ntfs-3g load "onboot".
Then you can mount your windows hard drive in /opt/bootlocal.sh.
-
Yeah but why is it like this only in this distro while all the others can mount with write access?
Is the ntfs-3g the only option?
The other distros commonly include ntfs-3g.
-
Since you are booting from a USB drive, you can have ntfs-3g load "onboot".
Ok, how can i do this?
Because i'm doing a remastering of mc i want to install ntfs-3g in the mc (core.gz extracted) while mc isn't running.
This is were i get stuck.
-
Search wiki for "remaster".
-
Haha!! Ok guys! I got it working with my own way!
I downloaded ntfs-3g.tcz separately and copied it to /tmp/tce/optional/
then i edited the /opt/bootsync.sh
and added this line:
su tc -c "tce-load -i ntfs-3g.tcz"
which loads ntfs-3g at boot time,
now i successfully mount windows filesystems with write access :-)