Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Well....I haven’t been in the konsol at all......just trying to mount a drive in KDE
As class101 says:
https://en.wikipedia.org/wiki/Mount_(computing)
Sorry i can't be of more help.
Attempted to connect an external drive? Why not? Should be the simplest of things. I just wanted to do a backup of my sd-card and some other important files. But yeah......of course thats nothing you should be able to do. Don’t get me wrong, I appreciate you trying to help me, and thank you for that.
Meaning that on Linux everything is within the same filesystem tree starting a the root "/" and in order to access the contents of a filesystem you need to tell the system to "fork" off to that filesystem at a specific directory (a.k.a a "mount point"). The mount point must be a directory that exists and your user must have access to it.
For example you could create a new directory in `/home/deck/external` which is within your users home directory. Then you should be able to mount the filesystem to that path. If you mount it to /home/ then you are "covering up" the existing data that is within the directory /home/ which is where the home directories for all the users on the system exist, and thus the "deck" users home directory will no longer be accessible because you've put a different filesystem above it within the hierarchy. This is partially why it broke things because when you rebooted the deck user no longer had an accessible home directory. Tried to illustrate this below
whereas if you create a new directory within your users home directory called something like "external" in the example above then you'd mount it to the path like this
If you are just wanting to temporarily mount it to backup files from your microSD card then there should already be an empty directory called /mnt/ which you should be able to safely mount the filesystem to.
You will also want to use an ext4 filesystem.