Last active
June 16, 2021 23:52
-
-
Save aleksseven/d48879bbdec3e736c25344c11a0ab3ae to your computer and use it in GitHub Desktop.
Montar un usb en Arch Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. sudo pacman -S ntfs-3g | |
| 2. sudo fdisk -l | |
| 3. mkdir /mnt/myusb | |
| 4. sudo mount -t ntfs-3g /dev/sdb /mnt/myusb/ | |
| Para desmontar: | |
| 5. sudo umount -t ntfs-3g /dev/sdb /mnt/myusb/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment