Friday, January 17, 2025

Access Windows drive in Linux(fedora)

Access Windows drive in Linux(fedora):

 

# install package necessary for ntfs

dnf install ntfs-3g

 

# create mount point

mkdir -p /mnt/windows/

 

# get the device name

sudo lsblk 

 

# mount drive

mount -t ntfs-3g /dev/<device>  /mnt/windows 


#  To make it permanent across reboots

tail -1 /proc/mounts >> /etc/fstab 

 

No comments:

Post a Comment