You are not logged in.
Hey I have a problem with trying to get my windows partiton to open. It mounts fine and everything but it doesn't open when I try to open the folder or even in terminal.
I am also running xfce4 if that helps idk just trying to give as much info as i can.
here is my lsblk if you want it the windows partition is sda2:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 465.8G 0 disk
├─sda1 8:1 0 25G 0 part
├─sda2 8:2 0 186.3G 0 part /media/OS
├─sda3 8:3 0 14.4G 0 part /
└─sda4 8:4 0 240.1G 0 part /home
sdb 8:16 1 3.6G 0 disk
└─sdb1 8:17 1 3.6G 0 part
sr0 11:0 1 1024M 0 rom
As you can see it is mounting correctly and is currently mounted on /media/OS but if I try to open the folder I get greeted by this error.
Failed to open directory "OS".
Permission denied.
I tried "sudo cd /media/OS" but it tells me...
sudo : cd command not found I would love it if someone could please help me.
Thanks, gr33nbit.
Last edited by gr33nbit (2013-07-19 06:13:03)
Offline
Presumably it is an NTFS partition?
Offline
Oh sorry yes it is ![]()
Offline
cd is a shell command, you can't prepend sudo to it.
You probably just neet to install ntfs-3g, then unmount and remount the partition to use it.
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Online
ntfs-3g was already installed.
also just to make sure I umounted it and then tried to mount it again with
mount /dev/sda2 and it returned this error :
mount: can't find /dev/sda2 in /etc/fstabOffline
mount without a mountpoint assumes an entry in fstab; either include one if you want to regularly mount this drive, or create a mountpoint in /media/
Offline
Thanks alls fixed.
if anyone wants to know the fix was: create a mount point , and just mount the filesystem to it such as
sudo mkdir /media/OS2
sudo mount /dev/sda2 /media/OS2turns out to be pretty simple ![]()
Thanks , gr33nbit.
Offline
Please remember to mark the thread as solved https://bbs.archlinux.org/viewtopic.php?id=130309
Offline
I'm curious how you were mounting it previously. Could you elaborate on that, so that people know what caused the problem to begin with?
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Online
I'm curious how you were mounting it previously. Could you elaborate on that, so that people know what caused the problem to begin with?
Gladly.
To anyone that finds it important I am using ArchLinux x86_64 and my desktop environment is XFCE4.
Ok so I followed the arch wiki here "https://wiki.archlinux.org/index.php/Xf … le_Devices" on how to set Arch up to auto mount the drives and I installed 'gvfs' and 'udisks' which I thought would auto mount the drives.
turns out it does auto mount the windows partition but for some reason when I try to open it I don't have permission.
so the fix is to create a folder in /media/
sudo mkdir /media/windowsPartitionAnd then mount the drive manually to that folder like so.
sudo mount /dev/partition_to_mount /media/folder_to_mount_toHope this helps ![]()
Last edited by gr33nbit (2013-07-19 06:14:29)
Offline