Ah, you're right, seems like it's a stripped down version of fdisk. You could try opkg list | grep -i fdisk
and try one of those and see if they're closer to the normal version of fdisk. Remember to opkg update
first.. if you haven't done already
H
Best posts made by huxflux
-
RE: formatting USB stick
-
RE: formatting USB stick
fdisk /dev/sdb
d
<enter> - Delete every other partition you might have with multipled
<enter> - This 'd'eletes your partition(s)n
<enter> - Tell fdisk you want to add a 'n'ew partitionp
<enter> - We'll add a 'p'rimary partition- <enter> x 3 - We want to use all space on the one partition we just added
t
<enter> - In case it didn't choose linux partition 't'ype, lets make sure83
<enter> - The code for linux partition typew
<enter> - 'w'rite the changes to your device
Now you have /dev/sdb1 .. then just run
mkfs.ext4 /dev/sdb1
and afterwardsmount /dev/sdb1 <random directory>
where <random directory> could be /mnt/usbFor fdisk, remember
m
for menu.. hope this works out for you! -
RE: Coding using C on the Onion Omega
@Theodore-Borromeo Yes it fixes the dependency so I'm able to compile it, but not link it.
undefined reference
to one or more of the functions.Cloud Compile sounds fancy schmancy