0

My work environment is Ubuntu 20.04.6 LTS.

My path to /media/yueli/Data directory is a 4TB hardware mounted at /dev/sda2. It isn't writable.

Data:

image of 4T

4TB:

image of Data

karel
  • 122,292
  • 133
  • 301
  • 332
li yue
  • 1

1 Answers1

0

I think you don't have permissions to write on that partition.

Try mounting that disk and write on it with upser user privileges.

sudo mkdir /media/yueli/data_v2
sudo mount /dev/sda2 /media/yueli/data_v2
cd /media/yueli/data_v2
sudo touch test1

If you don't have any data on that disk I suggest try using Disks which a GUI application for recreating partition but this time allow others to write on that disk.

mehdiMj
  • 183