I have a second HDD on my system that I can't add folders or files to. The permission access says the owner, (my) has rwx abilities. I'm new to kubuntu and used fedora before and this same hassle also existed and wasn't resolved.
Announcement
Collapse
No announcement yet.
Kubuntu 12.4 second HDD access
Collapse
This topic is closed.
X
X
-
Is it an internal HDD or connected externally via USB?Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
-
Is there anything on the second HDD? Open a console and type:
Code:sudo fdisk -l
Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
-
In the console type:
Code:sudo touch /dev/sdb1/junk.txt
Code:sudo chown -R username:username /dev/sdb1
Code:sudo chown -R jim3297:jim3297 /dev/sdb1
Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
-
Look at my reply #6 again. I had a syntax error in the first action. Repeat the commands.Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
-
Snowhog - can you access a block device that way? Did you mean to attempt a mount before the other test, or is this something I'm not aware of.
- Top
- Bottom
Comment
-
Originally posted by jim3297 View PostI don't know what you mean.
/dev/sdb1 is a block device. One would have to mount the file system that is on the block device to access it at the file level.
You would have to do something like this:
sudo mkdir /mnt/sdb1
sudo mount /dev/sdb1 /mnt/sdb1
Then do Snowhog's commands using /mnt/sdb1 instaed of /dev/sdb1.
- Top
- Bottom
Comment
Comment