Re: [gentoo-user] format usb as ext4

2024-11-04 Thread Viorel Munteanu
La 04.11.2024 09:35, Wols Lists a scris: I know linux doesn't care - has never cared, but historically you did NOT have partition tables on removable media. Floppy disks didn't have partition tables. I'm not aware of early SD cards or USB sticks having partition tables. It's only relatively rec

Re: [gentoo-user] format usb as ext4

2024-11-03 Thread Wols Lists
On 04/11/2024 02:11, Matt Jolly wrote: Hi, On 4/11/24 09:35, Wol wrote: Seeing as it's removable media I would expect most of those to have problems if you DID have a partition table. It's linux that's unusual in being happy with a partition table on removable media. That is not the case

Re: [gentoo-user] format usb as ext4

2024-11-03 Thread Matt Jolly
Hi, On 4/11/24 09:35, Wol wrote: Seeing as it's removable media I would expect most of those to have problems if you DID have a partition table. It's linux that's unusual in being happy with a partition table on removable media. That is not the case at all. Without a partition table how wo

Re: [gentoo-user] format usb as ext4

2024-11-03 Thread Wol
On 24/10/2024 04:01, Mitchell Dorrell wrote: I have no idea whether you can skip the partition table and still be usable with computers running Windows or Mac OS or with embedded systems like home printers or commercial photo kiosks. Seeing as it's removable media I would expect most of those

Re: [gentoo-user] format usb as ext4

2024-10-25 Thread Michael
On Thursday 24 October 2024 14:11:12 BST syscon edm wrote: > Yes, you are right. > doing "mkfs.ext4 /dev/sda1" worked, but I could only manually mount, > for automount it has to be entire partition "mkfs.ext4 /dev/sda" If you want to run "mkfs.ext4 /dev/sda1" then first you must create a partitio

Re: [gentoo-user] format usb as ext4

2024-10-24 Thread syscon edm
Yes, you are right. doing "mkfs.ext4 /dev/sda1" worked, but I could only manually mount, for automount it has to be entire partition "mkfs.ext4 /dev/sda" On Wed, Oct 23, 2024 at 8:43 PM Jack Ostroff < ostrof...@users.sourceforge.net> wrote: > [resent from my subscribed email] > > "mkfs.ext4 /dev/

Re: [gentoo-user] format usb as ext4

2024-10-24 Thread Jacques Montier
Le jeu. 24 oct. 2024 à 05:01, Mitchell Dorrell a écrit : > On Wed, Oct 23, 2024 at 10:35 PM syscon edm wrote: > >> It was my error, the command should be: >> mkfs.ext4 /dev/sda >> The usb was auto-mounted as soon as the command finished. >> > > You can format the whole thing (/dev/sda) as one bi

Re: [gentoo-user] format usb as ext4

2024-10-24 Thread Jack Ostroff
[resent from my subscribed email] "mkfs.ext4 /dev/sda" will create/format an ext4 partition taking up the entire device, which will then easily be automounted. "mkfs.ext4 /dev/sda1" can work, but only if you have already created a partition table on /dev/sda and created at least one partition

Re: [gentoo-user] format usb as ext4

2024-10-24 Thread Mitchell Dorrell
On Wed, Oct 23, 2024, 20:35 syscon edm wrote: > I format usb as ext4 > mkfs.ext4 /dev/sda1 > > but XFCE does not automount the partition > my other usb (ext4 as well) shows up automatically under > /run/media/joseph/disk_name > I think you're correct that if something is automounting your USB st

Re: [gentoo-user] format usb as ext4

2024-10-23 Thread Mitchell Dorrell
On Wed, Oct 23, 2024 at 10:35 PM syscon edm wrote: > It was my error, the command should be: > mkfs.ext4 /dev/sda > The usb was auto-mounted as soon as the command finished. > You can format the whole thing (/dev/sda) as one big ext4 volume, yes, but unless I'm very mistaken, that's not standard

Re: [gentoo-user] format usb as ext4

2024-10-23 Thread syscon edm
It was my error, the command should be: mkfs.ext4 /dev/sda The usb was auto-mounted as soon as the command finished. It has been some time since I run it, but looking at some documentation on-line a lot of instructions show to run: sudo mkfs.ext4 /dev/sdX1 eg: https://unix.stackexchange.com/quest