You are not logged in.
For people who comes from the Mac or Windows world, dealing with USB sticks in the linux world, is sometime painful on Linux LOL
Example:
- we sometime format a USB Stick and can't write on it (Need to google)
- we sometime format a USB stick the right way, it works, but not on another Linux station ( because of EXT fs permission)
What is the best "noobie tool" to manage our USB stick, to make sure they can be write to and move around between PC ?
For now, I have a 7 GB file to move for my BL station to a Arch station and don't want to learn all the Umount, chmod, df, lsblk things LOL
There is so many different ways and commands on the Net ( fdisk, dd, mkfs.ext4 etc etc etc)
tks...
Last edited by yoda (2020-04-21 19:46:58)
According to Buddhism, we all met several times... This time, it's on this forum :-) May we meet again
Offline
Long Story short, the "File System noobie" that I am, finally used gparted and then chmod -R 777 /dev/sdb and for some reason my USB stick was also readable on the Arch PC BUT' if there is an easy GUI tool for next time, I would use it...
Last edited by yoda (2020-04-21 15:18:46)
According to Buddhism, we all met several times... This time, it's on this forum :-) May we meet again
Offline
Depending on your security/permission needs, you can use gparted to format the USB to FAT32. Then you can use it with any operating system and username.
You must unlearn what you have learned.
-- yoda
Offline
use gparted to format the USB to FAT32.
Gparted is one good GUI tool for manging disk partitions. Cfdisk is another ncurserbased gui program.
But Fat32, can not host a 7 GB file! On fat32, you have to splitt the file. You must have program for splitting and combine file. Preferable whith redundancy checksums.
Better then maybe, to use ntfs and on the mac/linux/bsd, whatever install support for ntfs. Or use ext2 and install support for that on the mac/win.
Bottomline is that if you want to transfer files bigger than 4 GB usb-stick, between diferent hw plattofrms/OS, there does not exist any easy GUI programs to support it "out of the box".
// Regards rbh
Please read before requesting help: "Guide to getting help", "Introduction to the Bunsenlabs Lithium Desktop" and other help topics under "Help & Resources" on the BunsenLabs menu
Offline
^There is no "egg-laying" tool for this, as already mentioned above. Especially not "with USB" with this amount of data.
Many years ago I was in a similar situation. The task was to "save away" and "bring back" 17GB
The wonder is called scp (and ssh)
scp (shell command) The shell command scp (secure copy) is used to transfer files and directories in a computer network encrypted with SSH. The Secure Shell / SSH is used for login and connection and the Secure Copy Protocol / SCP is used for data transmission.
You have to read (and understand) something even with LINUX!
scp -r -p -v /media/windows unklar@192.168.178.36:/media/DATEN
It says (man scp)
-r for recursive
-v for verbose
-p for the original timestamp (important, otherwise all files will have the date of today)
The 17GB lasted 26:24 minutes and I could watch.
Later, the whole thing back again
scp -r -p -v unklar@192.168.178.36:/media/DATEN/windows /media
was finished in even less time.
Offline
But Fat32, can not host a 7 GB file!
True; that looked like 1GB on my phone this morning.
@yoda - something like unklar suggests is the better route for large file transfers.
Last edited by PackRat (2020-04-21 18:56:05)
You must unlearn what you have learned.
-- yoda
Offline
Tks to all !! Really appreciate
According to Buddhism, we all met several times... This time, it's on this forum :-) May we meet again
Offline
The wonder is called scp (and ssh)
Tks a lot !!!
According to Buddhism, we all met several times... This time, it's on this forum :-) May we meet again
Offline
Well, you're gonna have to go through that...
Offline