Linux ext4 partitions show up as "Microsoft basic data" type

I have no Microsoft partitions in my system nor dual boot (i run Windows in VirtualBox) yet not sure when this changed (update in November?) all my linux ext4 partitions show up as "Microsoft basic data" types (except BIOS boot and Swap) in fdisk -l (also in Gnome Disk utility gui, just shows "Basic data" instead of the actual Linux type. All the searching in Arch Wiki's I've found refer to dual boot systems so far and haven't turned up anything useful in Google yet either. How to i get this corrected? All drives are GPT:
root@arch-bill /home/bill # fdisk -l
Disk /dev/sdb: 1.8 TiB, 2000398934016 bytes, 3907029168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 0645408C-0374-4357-8663-D2A3512E07BD
Device Start End Size Type
/dev/sdb1 2048 6143 2M BIOS boot partition
/dev/sdb2 8192 8396799 4G Microsoft basic data
/dev/sdb3 8398848 41953279 16G Microsoft basic data
/dev/sdb4 41955328 167786495 60G Microsoft basic data
/dev/sdb6 167788544 3902834687 1.8T Microsoft basic data
Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: C3E095E9-90D9-4BFA-A97F-5D74E64FC4A4
Device Start End Size Type
/dev/sda1 8192 32776191 15.6G Microsoft basic data
/dev/sda2 32778240 1953509375 915.9G Microsoft basic data
/dev/sda3 2048 6143 2M BIOS boot partition
Disk /dev/sdc: 298.1 GiB, 320072933376 bytes, 625142448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 5607E1F7-1A96-4EF5-A353-29BE91873431
Device Start End Size Type
/dev/sdc1 2048 6293503 3G Linux swap
/dev/sdc2 6295552 618600447 292G Microsoft basic data
Last edited by jasonwryan (2014-12-17 02:22:31)

I followed the instructions here and now fdisk -l reports them correctly (8300 Linux File System, not 0700 Microsoft basic data) - SOLVED
1 root@arch-bill /home/bill # gdisk /dev/sdb :(
GPT fdisk (gdisk) version 0.8.10
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): t
Partition number (1-6): 2
Current type is 'Microsoft basic data'
Hex code or GUID (L to show codes, Enter = 8300):
Changed type of partition to 'Linux filesystem'
Command (? for help): t
Partition number (1-6): 3
Current type is 'Microsoft basic data'
Hex code or GUID (L to show codes, Enter = 8300):
Changed type of partition to 'Linux filesystem'
Command (? for help): t
Partition number (1-6): 4
Current type is 'Microsoft basic data'
Hex code or GUID (L to show codes, Enter = 8300):
Changed type of partition to 'Linux filesystem'
Command (? for help): t
Partition number (1-6): 6
Current type is 'Microsoft basic data'
Hex code or GUID (L to show codes, Enter = 8300):
Changed type of partition to 'Linux filesystem'
Command (? for help): p
Disk /dev/sdb: 3907029168 sectors, 1.8 TiB
Logical sector size: 512 bytes
Disk identifier (GUID): 0645408C-0374-4357-8663-D2A3512E07BD
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 3907029134
Partitions will be aligned on 2048-sector boundaries
Total free space is 4204653 sectors (2.0 GiB)
Number Start (sector) End (sector) Size Code Name
1 2048 6143 2.0 MiB EF02
2 8192 8396799 4.0 GiB 8300
3 8398848 41953279 16.0 GiB 8300
4 41955328 167786495 60.0 GiB 8300
6 167788544 3902834687 1.7 TiB 8300
Command (? for help): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): Y
OK; writing new GUID partition table (GPT) to /dev/sdb.
The operation has completed successfully.
1 root@arch-bill /home/bill # fdisk -l :(
Disk /dev/sdb: 1.8 TiB, 2000398934016 bytes, 3907029168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 0645408C-0374-4357-8663-D2A3512E07BD
Device Start End Size Type
/dev/sdb1 2048 6143 2M BIOS boot partition
/dev/sdb2 8192 8396799 4G Linux filesystem
/dev/sdb3 8398848 41953279 16G Linux filesystem
/dev/sdb4 41955328 167786495 60G Linux filesystem
/dev/sdb6 167788544 3902834687 1.8T Linux filesystem
Disk /dev/sdc: 298.1 GiB, 320072933376 bytes, 625142448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 5607E1F7-1A96-4EF5-A353-29BE91873431
Device Start End Size Type
/dev/sdc1 2048 6293503 3G Linux swap
/dev/sdc2 6295552 618600447 292G Microsoft basic data
Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: C3E095E9-90D9-4BFA-A97F-5D74E64FC4A4
Device Start End Size Type
/dev/sda1 8192 32776191 15.6G Microsoft basic data
/dev/sda2 32778240 1953509375 915.9G Microsoft basic data
/dev/sda3 2048 6143 2M BIOS boot partition
root@arch-bill /home/bill #

Similar Messages

  • Problem accessing basic data types

    Hi,
    I am a newbie at using JNI so please don't mind if I am asking something trivial.
    I have a JNI wrapper for a native C code. The C code is a Gtk+ application using GLib library. This library has it's own basic data types. For example, "gchar" corresponding to "char". I have generated the JNI Wrappers using the tool named "Swig" which is an interface between the C and other programming languages such as Java. What Swig has come up with is since "gchar" is not understood by it as "char" so it has taken the "gchar" as come Reference Type and generated another class for it. And instead of accepting simple char it is expecting a long.
    Even if I pass a numerical value like 11111 after instantiating this newly generated gchar class while running the program the JVM is crashing complaining SIGSEGV recieved from the underlying libraries.
    I am confused first of all since the error is not understood and secondly how can I tell the JNI that gchar is similar to char.
    What approach should I follow to solve the problem that I am facing? Any feedback on this will be appreciated.
    Thanks & Regards

    At run time you can see all the data........ like what i have shown...
    but if you clearly see, DATE will be in the internal format..but if you print it, it will be in dd:mm:yyyy
    can you suggest me if i have a dynamic field symbol (table data) ,,,, How can i convert data types dynamically..
    if it is a static internal table i am achieving with WRITE TO statement.....but i have huge data in field symbols...
    Instead of all these , please specify the exact problem your are facing . What is it with date field ? . In SAP while printing the internal format will be converted to external. What is your requirement with this date field?
    My output looks some thing like this:
    04 36876 15.09.2011 39600 1999
    06 36960 15.09.2011 39600 2632
    07 36874 15.09.2011 39541 9232
    My expected output
    04 36.876 15.09.2011 39.600 1.999
    06 36.960 15.09.2011 39.600 2.632
    07 36.874 15.09.2011 39.541 9.232
    I dont see any problems mentioned in your date field. Both your actual and expected outputs reflects the same in date field.
    In SCN you will only get solutions if your question is precise.
    Kesav

  • Basic Data Types as Class Objects

    Consider the following code using the java.lang.reflect.Method
    Class c = Class.forName("java.util.Date");
    // get all methods in Date
    Method[] c_classes = c.getMethods();
    // get the UTC method - UTC(int year, int month, int date, int hrs, int min, int sec)
    Method m = c_classes[0];
    // get the parameters (all int)
    Class[] p = m.getParameterTypes();
    This gives a Class array of basic data types (in this case int) - in debug the variable is of type "class" with value "0x16d9220:class(int)"
    How do you create a Class object of a basic data type from scratch? I've tried Class.forName("int") and get an exception.
    Cheers
    Gareth

    You could use the class literals.
    Class[] primitiveTypes = {
    boolean.class,
    byte.class,
    char.class,
    double.class,
    float.class,
    int.class,
    long.class,
    short.class,
    Cheers, that's exactly what I needed.
    Gareth

  • [solved] Check EXT4 partition automatically

    Hello everyone,
    I have two EXT4 partition on my HD (sda2 and sda4):
    $ fdisk -l
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 3264 26218048+ 7 HPFS/NTFS
    /dev/sda2 3265 6528 26218080 83 Linux
    /dev/sda3 6529 6590 498015 82 Linux swap / Solaris
    /dev/sda4 6591 19457 103354177+ 83 Linux
    Eventually, sda2 partition (root partition) is checked automatically on boot, but sda4 never checked. On dmesg appears:
    EXT4-fs (sda4): warning: maximal mount count reached, running e2fsck is recommended
    On wiki (http://wiki.archlinux.org/index.php/Fsck) is written:
    The Arch Linux boot process conveniently takes care of the Fsck procedure for you and will periodically check ALL relevant partitions on your hard drive automatically in a scheduled manner.
    Can I turn automatically check on for sda4 partition too? Or I have to do this manually ?
    My fstab:
    UUID=324658b1-0c1a-494b-bc6e-93ca1d138b1b swap swap defaults 0 0
    UUID=fc37e80c-fe03-4932-b9af-c8388190f19c / ext4 defaults 0 1
    UUID=b19fe1b6-aee6-4bda-b17f-b76674016525 /media/Dados ext4 defaults,noatime,nodiratime 0 0
    /dev/sda1 /media/Windows ntfs-3g defaults 0 0
    Thanks in advance.
    Last edited by alessandro_ufms (2010-04-07 20:11:42)

    Have a look at the <pass> definition in fstab: http://wiki.archlinux.org/index.php/Fstab
    File systems with a <pass> value 0 will not be checked by the fsck utility.

  • Boot partition showing up on desktop

    After restoring OSX and Linux to my new replacement Powerbook hard drive, there's a "Boot OSX" partition showing up on my desktop, the contents of which are:
    -rw-r--r-- 1 root wheel 174276 Mar 24 2005 BootX
    -rw-r--r-- 1 root wheel 1024 Dec 4 18:00 Desktop DB
    -rw-r--r-- 1 root wheel 2 Dec 4 16:25 Desktop DF
    -rw-r--r-- 1 root wheel 16384 Mar 24 2005 Volume Name Icon
    -rw-r--r-- 1 root wheel 0 Mar 24 2005 bootromfirmware
    -rw------T 1 root wheel 0 Mar 24 2005 com.apple.Boot.plist
    -rw-r--r-- 1 root wheel 52 Mar 24 2005 vers.txt
    Diskutil lists its info as:
    Device Node: /dev/disk0s4
    Device Identifier: disk0s4
    Mount Point: /Volumes/Boot OSX
    Volume Name: Boot OSX
    File System: HFS+
    Owners: Enabled
    Partition Type: Apple_HFS
    Bootable: Is bootable
    Media Type: Generic
    Protocol: ATA
    SMART Status: Verified
    UUID: 96FC6ABE-C1C6-3A71-BFCD-771E2B57B44A
    Total Size: 8.5 MB
    Free Space: 7.8 MB
    Read Only: No
    Ejectable: No
    What do I need to do to stop it showing up on my desktop? It never did before, with the same combo of OSX+Ubuntu installed.

    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Preferences/com.apple.desktop.plist. Move the .plist to your desktop.
    Restart and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.
    Thanks to leonie for some information contained in this.
    You might need to redo the View settings after an update.

  • How mount ext4 partition with read/write

    i use archlinux  , and i have a ext4 partition, i want to mount it , add it on /etc/fstab
    /dev/sda7 /mnt/sda7 ext4 defaults,noatime 0 0
    i reboot, i found the ext4 partition, i have no right to R/W for user mode? why?

    the ext4 partition is another linux, fedora 13, i want to mount it on archlinux.
    [figo@myhost sda7]$ ls -lah
    total 136K
    dr-xr-xr-x 24 root root 4.0K May 9 15:28 .
    drwxr-xr-x 7 root root 4.0K May 9 15:35 ..
    drwx------ 4 root root 4.0K May 9 15:28 .Trash-0
    -rw-r--r-- 1 root root 0 May 8 20:17 .autofsck
    drwx------ 3 root root 4.0K May 1 18:28 .dbus
    drwx------ 2 root root 4.0K May 1 18:28 .pulse
    -rw------- 1 root root 256 May 1 18:28 .pulse-cookie
    dr-xr-xr-x 2 root root 4.0K May 8 21:41 bin
    dr-xr-xr-x 4 root root 4.0K May 8 21:42 boot
    drwxr-xr-x 4 root root 4.0K Oct 1 2009 dev
    drwxr-xr-x 117 root root 12K May 8 21:45 etc
    drwxr-xr-x 4 root root 4.0K May 1 18:29 home
    dr-xr-xr-x 17 root root 12K May 8 21:43 lib
    drwx------ 2 root root 16K Apr 8 02:48 lost+found
    drwxr-xr-x 2 root root 4.0K Oct 1 2009 media
    drwxr-xr-x 2 root root 4.0K Oct 1 2009 mnt
    drwxr-xr-x 2 root root 4.0K Oct 1 2009 opt
    drwxr-xr-x 2 root root 4.0K Apr 8 02:48 proc
    dr-xr-x--- 7 root root 4.0K May 8 20:21 root
    dr-xr-xr-x 2 root root 12K May 8 21:44 sbin
    drwxr-xr-x 3 root root 4.0K Apr 8 03:02 selinux
    drwxr-xr-x 3 root root 4.0K Oct 1 2009 srv
    drwxr-xr-x 2 root root 4.0K Apr 8 02:48 sys
    drwxrwxrwt 16 root root 4.0K May 8 21:42 tmp
    drwxr-xr-x 13 root root 4.0K Apr 8 02:49 usr
    drwxr-xr-x 21 root root 4.0K May 8 21:41 var

  • Is it possible to merge ext4 partitions?

    I would like to know if it's possible to merge two ext4 partitions to create one ext4 partition with files untouched. I have / and /opt on separate partition and would like /opt to be on the same partition as /. Is it doable without system format?

    Thanks. I'll give it a shot. What Live CD do You recommend?
    Can you write a very short tutorial about mounting drives? (I'm afraid I'd mount them in read-only mode or something like that propably )
    PS.: My fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    #Linux drives
    UUID=1e68d1ae-5f08-4a45-92f3-d5a9b3720902 / ext4 defaults 0 0
    UUID= swap swap defaults 0 0
    UUID=9d234111-34f5-4e05-b690-e2e724ac2cfd /home ext4 defaults 0 0
    UUID=08d10b10-cea7-4ade-8041-99ae46e61b9a /opt ext4 defaults 0 0
    #USB in VirtualBox
    none /proc/bus/usb usbfs auto,busgid=108,busmode=0775,devgid=108,devmode=0666 0 0
    Yeah, I know, swap isn't working. I would like to get rid of it entirely (I have enough RAM), so another good reason to use Live CD.

  • My fonts that are installed in Font Book are not showing up in Microsoft Word. Can someone help me fix this problem?

    Hello!
    I am needing some help. I own a Mac Book Air with OS X 10.7.5. This computer belongs to the school district I teach for, so I do not have permission to do a huge wipe that would uninstall programs such as Word. When I first got my computer, I added all my fonts. I did this by putting them into a fonts folder. The fonts were not all showing up in Microsoft Word, so I was told to use Font Book. All of my fonts show up and are installed in Font Book; however, they do not show up in Word. I have restarted my computer. All the fonts are validated. I have tried almost everything I could think of after researching answers online. Another problem--my bullet points are messed up. When I click the bullet button, instead of an open circle it's an open rectangle. This doesn't concern me as much, but I thought it might help as a clue as to what is wrong. The fonts also do not show up in the Format > Font box.
    Also, I want to point out that my colleagues, using the exact same computer, network, etc, are able to download and use all the fonts. They have tried to fix mine, also.
    Any help is much appreciated! Maybe there is some way to wipe out my fonts and start clean?
    Thanks so much!

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • I have connected my macbook pro to my tv via MDP to HDMI port cable, all that is showing up is the basic desktop image without any icons, what do i do to correct this

    i have connected my macbook pro to my tv via MDP to HDMI port cable, all that is showing up is the basic desktop image without any icons, what do i do to correct this

    Your MBP is running in "extended desktop" mode, where the two screens together make one larger area to display windows. You can drag one or more windows from the primary (internal) screen to the secondary (TV) screen. By default, the secondary screen is off to the right of the primary screen.
    If you would prefer the two screens show the same image, you want to switch to "mirroring" mode. You will have to pick a single resolution for both screens, which may look poor on one or the other.
    Both the relative positions of the two screens in extended desktop mode and the switch to mirroring mode can be set in System Preferences > Displays > Arrangement.

  • Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Hi ebender888,
    Which Office version are you using?
    If it's Office 2013 then Acrobat 10 pdfmaker is not compatible.
    Please refer: http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html#main_ PDFMaker_compatible_applications
    Regards,
    Rave

  • External Hard Drive - One Partition shows no files.

    I have an airport extreme with a WD 600 GB HD hooked up to the USB port. I have 2 partitions on the HD, the apple parition works fine (I am using it as my time capsule HD) The FAT32 partition shows up on the desktop and in the finder, but I can't see any files. I can see the files fine if I plug the HD straight to my macbook. HELP!

    No ideas? I think I might backup that partition and redo it as an apple partition. Good idea?

  • Itune doesnt install showing error during installation of assembly ''Microsoft.VC80.CRT,type=wim32'',version=''8.0.50727.6195''.publicKeyToken=''1 fc8b3b9a1e18e3b

    itune doesnt install showing error during installation of assembly ''Microsoft.VC80.CRT,type=wim32'',version=''8.0.50727.6195''.publicKeyToken=''1 fc8b3b9a1e18e3b

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • One partition showing, one not

    Hi guys,
    I upgraded my Macbook to Leopard a few days ago and it's been working great. I've been using an external Seagate FreeAgent Desktop 250GB hard drive divided into two partitions - one is 100GB and one is 150GB. I've been using the 100GB with Time Machine and the larger one just to store files on. Today I plugged in my hard drive and only the Time Machine partition showed up in Finder. I've tried everything I can think of. In Disk Utility, the non-Time Machine partition shows up and is working properly, I just can't open it. I tried ejecting, remounting, unplugging the drive (both USB and power), everything. Any suggestions?
    I want to reiterate that this has been working for a few days. It just randomly stopped working today.
    Ben

    Hi! Anytime you have drive problems you run the risk of losing information...that's why you have backups and backups to the backups but repairing the drive is your best choice. Repairing it in itself won't cause a loss of data unless the directory structure is too damaged to repair correctly. Diskwarrior is the best utility for repairing directory structures. Tom

  • When we pass null in JDialog title in linux it is showing 2 in title????

    When we pass null in tilte of JDialog using setTitle("") method in linux environment is showing some garbage value like <2> in title bar of JDialog but in Windows O.S. JDialog is working fine means not showing anything in titlebar when we pass null in JDialog title using setTitle("")
    So i cant find where the problem is ??
    Please guide me what to do with this issue?

    I'm not sure if this will work, it's probably an obvious idea that you've already tried; but how about passing a space to the setTitle() method? setTitle(" ") Are you using the same version of the jdk on Windows and Linux? If so, it's probably a Linux issue.

  • Greetings from The Linux Link Tech Show!

    Hello,
    I'm one of the co-hosts of The Linux Link Tech Show. I recently tried Arch Linux and I really like it. I gave it a little plug on last nights episode:
    http://tllts.info/archives/tllts_112-11-30-05.ogg
    http://tllts.info/archives/tllts_112-11-30-05.mp3
    It's around the 9:38 mark.
    I'm trying to get the other guys on the show to give it a try. I think they'll like  it since they're hardcore Slackware guys.
    I'll post mentions or Arch Linux in the future.
    We'd love to have Judd on the show at some point for an interview.
    Keep up the good work and take care.
    Pat

    iphitus wrote:At least it isnt one of the communities that doesnt go "why didnt you rtfm rtffaq and rtfxyx before?" or "giyf" or "rtfman apt"
    Ah oh - this was nearly the welcome greeting of sarah31 in response of my first posting as arch n00b. "To lazy to read and move fingers, pal?" and such.
    Made me even tougher, sniff.

Maybe you are looking for