Cần chỉ cách phân vùng quyền linux đơn giản cho newbei

** Ubuntu 14.04 Quyền tệp NTFS: Hướng dẫn cho người mới **

** TL; DR: ** Theo mặc định, Ubuntu 14.04 không có quyền cần thiết để ghi vào các ổ đĩa NTFS.Để sửa lỗi này, bạn có thể gắn ổ đĩa với tùy chọn `user_xattr` hoặc sử dụng gói` ntfs-3g`.

**Vấn đề**

Nếu gần đây bạn đã chuyển sang Ubuntu 14.04 từ Windows, bạn có thể nhận thấy rằng bạn không thể xóa hoặc thay đổi bất kỳ tệp nào trên ổ NTFS (Windows) của mình.Điều này là do Ubuntu 14.04 không có các quyền cần thiết để ghi vào các ổ đĩa NTFS theo mặc định.

**Giải pháp**

Có hai cách để khắc phục vấn đề này.Đầu tiên là gắn ổ đĩa với tùy chọn `user_xattr`.Điều này sẽ cung cấp cho bạn các quyền cần thiết để ghi vào ổ đĩa.Để thực hiện việc này, hãy mở thiết bị đầu cuối và nhập lệnh sau:

`` `
sudo mount -o user_xattr /dev /sda1 /mnt /windows
`` `

Trong đó `/dev/sda1` là đường dẫn thiết bị cho ổ đĩa NTFS của bạn và`//mnt/windows` là thư mục mà bạn muốn gắn nó.

Giải pháp thứ hai là sử dụng gói `ntfs-3g`.Gói này cung cấp một trình điều khiển kernel cho phép Ubuntu đọc và ghi vào các ổ đĩa NTFS.Để cài đặt nó, hãy mở thiết bị đầu cuối và nhập lệnh sau:

`` `
sudo apt-get install ntfs-3g
`` `

Khi gói được cài đặt, bạn có thể gắn ổ NTFS của mình bằng cách làm theo các bước tương tự như trên.

**Phần kết luận**

Bằng cách làm theo một trong những giải pháp này, bạn sẽ có thể xóa và thay đổi các tệp trên ổ đĩa NTFS của mình trong Ubuntu 14.04.
=======================================
**Ubuntu 14.04 NTFS File Permissions: A Guide for Newbies**

**TL;DR:** By default, Ubuntu 14.04 does not have the necessary permissions to write to NTFS drives. To fix this, you can either mount the drive with the `user_xattr` option or use the `ntfs-3g` package.

**The Problem**

If you've recently switched to Ubuntu 14.04 from Windows, you may have noticed that you can't delete or change any files on your NTFS (Windows) drive. This is because Ubuntu 14.04 does not have the necessary permissions to write to NTFS drives by default.

**The Solution**

There are two ways to fix this problem. The first is to mount the drive with the `user_xattr` option. This will give you the necessary permissions to write to the drive. To do this, open the terminal and type the following command:

```
sudo mount -o user_xattr /dev/sda1 /mnt/windows
```

Where `/dev/sda1` is the device path for your NTFS drive and `/mnt/windows` is the directory where you want to mount it.

The second solution is to use the `ntfs-3g` package. This package provides a kernel driver that allows Ubuntu to read and write to NTFS drives. To install it, open the terminal and type the following command:

```
sudo apt-get install ntfs-3g
```

Once the package is installed, you can mount your NTFS drive by following the same steps as above.

**Conclusion**

By following one of these solutions, you'll be able to delete and change files on your NTFS drive in Ubuntu 14.04.
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top