* How to open: Usb, hdd and other storage
@ 2022-10-13 13:23 101ab--- via
2022-10-14 15:55 ` Wojtek Kosior via
0 siblings, 1 reply; 2+ messages in thread
From: 101ab--- via @ 2022-10-13 13:23 UTC (permalink / raw)
To: Help Guix
Hello, excuse my English. Can you give me a hint?
I am new to guix. I have installed the OS but I have no idea how to open my usb drives and my hdd? Lsusb shows my usb storage but file manager is silent. I am using xfce.
Thanks a lot in advance for the answer. I really looked for this information in search, manual, but i couldn't find anything there. If you can, please show me this point in the manual. Thank you very much for your work
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: How to open: Usb, hdd and other storage
2022-10-13 13:23 How to open: Usb, hdd and other storage 101ab--- via
@ 2022-10-14 15:55 ` Wojtek Kosior via
0 siblings, 0 replies; 2+ messages in thread
From: Wojtek Kosior via @ 2022-10-14 15:55 UTC (permalink / raw)
To: help-guix; +Cc: 101ab
[-- Attachment #1: Type: text/plain, Size: 2609 bytes --]
Hi there!
> Hello, excuse my English. Can you give me a hint?
> I am new to guix. I have installed the OS but I have no idea how to
> open my usb drives and my hdd? Lsusb shows my usb storage but file
> manager is silent. I am using xfce.
There exist some facilities to have external media pop up in file
menagers but I don't have experience setting those up in Guix. Perhaps
someone else will help here. Before that happens, I can recommend a
really lame command-line workaround.
Choose a directory in the filesystem where you want your USB to be
"mounted". That is, where you want the contents of your flash drive to
appear. A typical location is `/mnt/` or some directory under `/mnt/`.
Check what drives your system sees. For example with
ls /dev/sd*
Most commonly, you'll see a `/dev/sda` special file which represents
your computer's HDD/SSD and `/dev/sda1`, `/dev/sda2`, etc. which
represents the partitions on that device. Analogously, `/dev/sdb`,
`/dev/sdc`, etc. shall represent another devices (usually other
HDDs/SSDs and flash drives) and `/dev/sdb1`, `/dev/sdb2`, `/dev/sdc1`,
etc. shall represent their partitions.
There do exist some ways to check which special file corresponds to
which device. Personally, however, I never remember those ways and I
usually just guess which file is the one for my USB. So, assuming
`/dev/sdb1` is the data partition of your flash drive, you can do
sudo mount /dev/sdb1 /mnt/
and confirm with your password. If no error is shown, you can check with
ls /mnt
If this command lists the files from your flash drive, you successfully
mounted it over `/mnt/`. You can now navigate there with your file
manager and read the files. If not, you can try with another of the
`/dev/sd*` files.
In some cases a flash drive might just have a filesystem on it, without
any partitions. In this case something like
sudo mount /dev/sdc /mnt/
may work.
Also, the contents of storage mounted this way are "owned" by root.
That means you need to copy files to `/mnt/` using sudo to have them
stored on you flash drive. Same with deletion of files.
Once you're done, you can do
sudo umount /mnt/
Best,
Wojtek
-- (sig_start)
website: https://koszko.org/koszko.html
PGP: https://koszko.org/key.gpg
fingerprint: E972 7060 E3C5 637C 8A4F 4B42 4BC5 221C 5A79 FD1A
Meet Kraków saints! #54: blessed Wojciech Nierychlewski
Poznaj świętych krakowskich! #54: błogosławiony Wojciech Nierychlewski
https://pl.wikipedia.org/wiki/Wojciech_Nierychlewski
-- (sig_end)
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-10-14 15:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-13 13:23 How to open: Usb, hdd and other storage 101ab--- via
2022-10-14 15:55 ` Wojtek Kosior via
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.