1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-03 15:27:45 +02:00

disk-management: mount error transport not connected added

This commit is contained in:
tiyn 2023-03-21 04:39:42 +01:00
parent 25516c29e4
commit 60cfc79a87

View File

@ -99,6 +99,9 @@ Especially for large file systems this might take a while.
## Error solving
This section addresses various problems that can occur and are related to
disk-management.
### sudo: unable to open ... Read-only file system
Ususally the filesystem will go into read-only mode whe the system is running
@ -110,3 +113,23 @@ To fix it run:
`fsck from util-linux 2.20.1`
you may want to try using the ext4-specific fsck:
- `fsck.ext4 -f /dev/sda1`
### cannot access: Transport endpoint is not connected
This error message can occur if a mounted directory is left mounted due to a
crash of the filesystem but not accessible anymore.
This error can be fixed and the directory made accessible again by running the
following command.
```sh
fusermount -u <path to mount dir>
```
If this does not work the following command can be used to unmount the device.
```sh
umount -l <path to mount dir>
```
This section is based on a reply by
[Jonathan Brown on Stack Overflow](https://stackoverflow.com/questions/16002539/fuse-error-transport-endpoint-is-not-connected).