Mounting every reboot with attributes of read and write for all users [on hold]
up vote
0
down vote
favorite
So i know that to mount something every reboot I have to change something in /etc/fstab
so I want to mount filesys.bin
every reboot with attributes of read and write for every user.
this is my etc/fstab
:
/filesys.bin /mnt/mymnt ext2 sw,rw 0 0
What am I doing wrong?
mount fstab
put on hold as unclear what you're asking by Jeff Schaller, thrig, Ipor Sircer, RalfFriedl, G-Man Nov 20 at 6:04
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
0
down vote
favorite
So i know that to mount something every reboot I have to change something in /etc/fstab
so I want to mount filesys.bin
every reboot with attributes of read and write for every user.
this is my etc/fstab
:
/filesys.bin /mnt/mymnt ext2 sw,rw 0 0
What am I doing wrong?
mount fstab
put on hold as unclear what you're asking by Jeff Schaller, thrig, Ipor Sircer, RalfFriedl, G-Man Nov 20 at 6:04
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
this is a frequent recent question that's never been clarified: one and two.
– Jeff Schaller
Nov 19 at 18:00
Quoting with an update: "Can you runfile /filesys.bin
and show us the output? Would like to verify whether it's an entire disk image or just a file system image." Mark Plotnic
– Jeff Schaller
Nov 19 at 18:01
Also, what doesn't happen? Does it not mount? Not with the correct permissions? With an error?
– Jeff Schaller
Nov 19 at 18:02
@JeffSchaller not with the correct permissions
– C. Cristi
Nov 19 at 18:07
What is thesw
mount option?
– Jeff Schaller
Nov 19 at 18:23
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
So i know that to mount something every reboot I have to change something in /etc/fstab
so I want to mount filesys.bin
every reboot with attributes of read and write for every user.
this is my etc/fstab
:
/filesys.bin /mnt/mymnt ext2 sw,rw 0 0
What am I doing wrong?
mount fstab
So i know that to mount something every reboot I have to change something in /etc/fstab
so I want to mount filesys.bin
every reboot with attributes of read and write for every user.
this is my etc/fstab
:
/filesys.bin /mnt/mymnt ext2 sw,rw 0 0
What am I doing wrong?
mount fstab
mount fstab
asked Nov 19 at 17:45
C. Cristi
1647
1647
put on hold as unclear what you're asking by Jeff Schaller, thrig, Ipor Sircer, RalfFriedl, G-Man Nov 20 at 6:04
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as unclear what you're asking by Jeff Schaller, thrig, Ipor Sircer, RalfFriedl, G-Man Nov 20 at 6:04
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
this is a frequent recent question that's never been clarified: one and two.
– Jeff Schaller
Nov 19 at 18:00
Quoting with an update: "Can you runfile /filesys.bin
and show us the output? Would like to verify whether it's an entire disk image or just a file system image." Mark Plotnic
– Jeff Schaller
Nov 19 at 18:01
Also, what doesn't happen? Does it not mount? Not with the correct permissions? With an error?
– Jeff Schaller
Nov 19 at 18:02
@JeffSchaller not with the correct permissions
– C. Cristi
Nov 19 at 18:07
What is thesw
mount option?
– Jeff Schaller
Nov 19 at 18:23
add a comment |
this is a frequent recent question that's never been clarified: one and two.
– Jeff Schaller
Nov 19 at 18:00
Quoting with an update: "Can you runfile /filesys.bin
and show us the output? Would like to verify whether it's an entire disk image or just a file system image." Mark Plotnic
– Jeff Schaller
Nov 19 at 18:01
Also, what doesn't happen? Does it not mount? Not with the correct permissions? With an error?
– Jeff Schaller
Nov 19 at 18:02
@JeffSchaller not with the correct permissions
– C. Cristi
Nov 19 at 18:07
What is thesw
mount option?
– Jeff Schaller
Nov 19 at 18:23
this is a frequent recent question that's never been clarified: one and two.
– Jeff Schaller
Nov 19 at 18:00
this is a frequent recent question that's never been clarified: one and two.
– Jeff Schaller
Nov 19 at 18:00
Quoting with an update: "Can you run
file /filesys.bin
and show us the output? Would like to verify whether it's an entire disk image or just a file system image." Mark Plotnic– Jeff Schaller
Nov 19 at 18:01
Quoting with an update: "Can you run
file /filesys.bin
and show us the output? Would like to verify whether it's an entire disk image or just a file system image." Mark Plotnic– Jeff Schaller
Nov 19 at 18:01
Also, what doesn't happen? Does it not mount? Not with the correct permissions? With an error?
– Jeff Schaller
Nov 19 at 18:02
Also, what doesn't happen? Does it not mount? Not with the correct permissions? With an error?
– Jeff Schaller
Nov 19 at 18:02
@JeffSchaller not with the correct permissions
– C. Cristi
Nov 19 at 18:07
@JeffSchaller not with the correct permissions
– C. Cristi
Nov 19 at 18:07
What is the
sw
mount option?– Jeff Schaller
Nov 19 at 18:23
What is the
sw
mount option?– Jeff Schaller
Nov 19 at 18:23
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I would do the following:
bchunk filename.bin filename.iso
If bchunk is not installed install it:
sudo apt-get install bchunk
Then I would put this line into fstab to mount the .iso file with your PATHS of course:
/path/to/filename.iso /path/to/folder iso9660 loop 0 0
New contributor
what doesiso9660
mean?
– C. Cristi
Nov 20 at 16:58
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I would do the following:
bchunk filename.bin filename.iso
If bchunk is not installed install it:
sudo apt-get install bchunk
Then I would put this line into fstab to mount the .iso file with your PATHS of course:
/path/to/filename.iso /path/to/folder iso9660 loop 0 0
New contributor
what doesiso9660
mean?
– C. Cristi
Nov 20 at 16:58
add a comment |
up vote
0
down vote
I would do the following:
bchunk filename.bin filename.iso
If bchunk is not installed install it:
sudo apt-get install bchunk
Then I would put this line into fstab to mount the .iso file with your PATHS of course:
/path/to/filename.iso /path/to/folder iso9660 loop 0 0
New contributor
what doesiso9660
mean?
– C. Cristi
Nov 20 at 16:58
add a comment |
up vote
0
down vote
up vote
0
down vote
I would do the following:
bchunk filename.bin filename.iso
If bchunk is not installed install it:
sudo apt-get install bchunk
Then I would put this line into fstab to mount the .iso file with your PATHS of course:
/path/to/filename.iso /path/to/folder iso9660 loop 0 0
New contributor
I would do the following:
bchunk filename.bin filename.iso
If bchunk is not installed install it:
sudo apt-get install bchunk
Then I would put this line into fstab to mount the .iso file with your PATHS of course:
/path/to/filename.iso /path/to/folder iso9660 loop 0 0
New contributor
edited Nov 19 at 18:05
Jeff Schaller
36.4k952120
36.4k952120
New contributor
answered Nov 19 at 17:59
Michael Prokopec
44711
44711
New contributor
New contributor
what doesiso9660
mean?
– C. Cristi
Nov 20 at 16:58
add a comment |
what doesiso9660
mean?
– C. Cristi
Nov 20 at 16:58
what does
iso9660
mean?– C. Cristi
Nov 20 at 16:58
what does
iso9660
mean?– C. Cristi
Nov 20 at 16:58
add a comment |
this is a frequent recent question that's never been clarified: one and two.
– Jeff Schaller
Nov 19 at 18:00
Quoting with an update: "Can you run
file /filesys.bin
and show us the output? Would like to verify whether it's an entire disk image or just a file system image." Mark Plotnic– Jeff Schaller
Nov 19 at 18:01
Also, what doesn't happen? Does it not mount? Not with the correct permissions? With an error?
– Jeff Schaller
Nov 19 at 18:02
@JeffSchaller not with the correct permissions
– C. Cristi
Nov 19 at 18:07
What is the
sw
mount option?– Jeff Schaller
Nov 19 at 18:23