Author Topic: YAMQ - Yet another mounting question  (Read 1012 times)

Doogee

  • VIP
  • Member
  • ***
  • Posts: 774
  • Kudos: 109
    • http://m-db.info
YAMQ - Yet another mounting question
« on: 19 October 2002, 14:23 »
If i was to download files, eg music using linux and i saved them to a mounted drive (/dev/hda1 mounted at /c) if i chose to save at, for example /c/My Documents/My Music/ would it be saving into the actual winbloze partition or what? if not, how would i go about doing this?

I'm using Red Hat 7.3

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
YAMQ - Yet another mounting question
« Reply #1 on: 19 October 2002, 19:57 »
Yes, if you save them in the location you mention, when you reboot into Windows you will find them under the C:\Same\Path\You\Mentioned
Someone please remove this account. Thanks...

beltorak0

  • Member
  • **
  • Posts: 223
  • Kudos: 0
    • http://www.angelfire.com/realm/beltorak
YAMQ - Yet another mounting question
« Reply #2 on: 20 October 2002, 03:47 »
provided of course that the partition is mounted read-write -- it's not NTFS, is it?

-t.
from Attrition.Org
 
quote:
Like many times before, Microsoft is re-inventing the wheel and opting for something other than round.

-t.


TheQuirk

  • VIP
  • Member
  • ***
  • Posts: 2,154
  • Kudos: 315
YAMQ - Yet another mounting question
« Reply #3 on: 20 October 2002, 04:57 »
experimental NTFS support lets you write and read  

Doogee

  • VIP
  • Member
  • ***
  • Posts: 774
  • Kudos: 109
    • http://m-db.info
YAMQ - Yet another mounting question
« Reply #4 on: 20 October 2002, 05:12 »
nah no ntfs, its FAT32 (but thats really FAT16, innit)

beltorak0

  • Member
  • **
  • Posts: 223
  • Kudos: 0
    • http://www.angelfire.com/realm/beltorak
YAMQ - Yet another mounting question
« Reply #5 on: 20 October 2002, 06:22 »
it's no problem then; just mount the drive with read-write and it will work; however, most apps and programs (especially in console mode) will require you to either escape the spaces [\ ] or put quotes around the "directories with spaces".  GUI browsing for reading and writing should work normally, just point and click.

FAT32 works on the same basic principle that FAT16 does, but there are differences (like the size of the HD supported) that aren't really necessary knowledge.  Incedentally, DOS floppies use FAT12, but they all work with the "-t vfat" option to mount.

-t.
from Attrition.Org
 
quote:
Like many times before, Microsoft is re-inventing the wheel and opting for something other than round.

-t.


Doogee

  • VIP
  • Member
  • ***
  • Posts: 774
  • Kudos: 109
    • http://m-db.info
YAMQ - Yet another mounting question
« Reply #6 on: 20 October 2002, 08:58 »
how do i make read-write access, cos at the moment if i try to save it says access denied.

Idont mount from command line i edited the file for the startup and it mounts it automatically, the post is around somewhere...

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
YAMQ - Yet another mounting question
« Reply #7 on: 20 October 2002, 21:12 »
If you want everyone that uses your system to have read write access use the "umask=000" mount parameter in your fstab:

Code: [Select]

Or if you mount on the command line it would be:

# mount /dev/hda1 /c -t vfat -o umask=000
Someone please remove this account. Thanks...

DC

  • Member
  • **
  • Posts: 211
  • Kudos: 0
YAMQ - Yet another mounting question
« Reply #8 on: 20 October 2002, 19:18 »
quote:
Originally posted by TheQuirk:
experimental NTFS support lets you write and read    

More like "erase and read" - read what the kernel info has on it. It's horrible.
GS/CS d- s-: a--- C++ UL+ P+ L++>+++ E W++ N>+ o K- w-- O- M V? PS+>++ PE- Y+ PGP t+ 5+ X R tv+ b+++ DI+ D+ G++ e>++++ h! r- y
A quantummechanical wavefunction describing an unknown amount of bottles of beer on the wall
A quantummechanical wavefunction describing an unknown amount of bottles of beer on the wall
We take a measurement, the wavefunction will collapse, and one of the bottles of beer will fall

Doogee

  • VIP
  • Member
  • ***
  • Posts: 774
  • Kudos: 109
    • http://m-db.info
YAMQ - Yet another mounting question
« Reply #9 on: 21 October 2002, 13:48 »
Hey void i get errors at startup heres my fstab :-

Code: [Select]

mobrien_12

  • VIP
  • Member
  • ***
  • Posts: 2,138
  • Kudos: 711
    • http://www.geocities.com/mobrien_12
YAMQ - Yet another mounting question
« Reply #10 on: 21 October 2002, 13:53 »
Code: [Select]
[/QB][/QUOTE]

Make that umask=0, not unmask.
In brightest day, in darkest night, no evil shall escape my sight....

Doogee

  • VIP
  • Member
  • ***
  • Posts: 774
  • Kudos: 109
    • http://m-db.info
YAMQ - Yet another mounting question
« Reply #11 on: 21 October 2002, 14:07 »
thanks sorry, misread.... must be the MS brainwashing

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
YAMQ - Yet another mounting question
« Reply #12 on: 21 October 2002, 20:23 »
quote:
Originally posted by Doogee:
Hey void i get errors at startup heres my fstab :-

Code: [Select]
[/b]


Not only should the "unmask" be "umask" but you also need to delete the word "defaults" since you are no longer using the "defaults" and using the "umask=000".
Someone please remove this account. Thanks...