Overlayfs over archivemount











up vote
1
down vote

favorite












I am trying to apply an overlay using overlayfs over a filesystem mounted with archivemount:



mkdir -p {upper,work,mount}
tar zcf somefile upper/ work/ mount/
mkdir tmp
archivemount -o allow_root -o fsname=ext4 somefile tmp
sudo mount -t overlay -o lowerdir=/,upperdir=tmp/upper,workdir=tmp/work overlayfs tmp/mount


However, mount fails with:



mount: /tmp/test8/tmp/mount: wrong fs type, bad option, bad superblock on overlayfs, missing codepage or helper program, or other error.


Looking at dmesg, I see:



overlayfs: filesystem on 'tmp/upper' not supported as upperdir


Why would archivemount not supported? Is there a way around that problem?










share|improve this question




























    up vote
    1
    down vote

    favorite












    I am trying to apply an overlay using overlayfs over a filesystem mounted with archivemount:



    mkdir -p {upper,work,mount}
    tar zcf somefile upper/ work/ mount/
    mkdir tmp
    archivemount -o allow_root -o fsname=ext4 somefile tmp
    sudo mount -t overlay -o lowerdir=/,upperdir=tmp/upper,workdir=tmp/work overlayfs tmp/mount


    However, mount fails with:



    mount: /tmp/test8/tmp/mount: wrong fs type, bad option, bad superblock on overlayfs, missing codepage or helper program, or other error.


    Looking at dmesg, I see:



    overlayfs: filesystem on 'tmp/upper' not supported as upperdir


    Why would archivemount not supported? Is there a way around that problem?










    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I am trying to apply an overlay using overlayfs over a filesystem mounted with archivemount:



      mkdir -p {upper,work,mount}
      tar zcf somefile upper/ work/ mount/
      mkdir tmp
      archivemount -o allow_root -o fsname=ext4 somefile tmp
      sudo mount -t overlay -o lowerdir=/,upperdir=tmp/upper,workdir=tmp/work overlayfs tmp/mount


      However, mount fails with:



      mount: /tmp/test8/tmp/mount: wrong fs type, bad option, bad superblock on overlayfs, missing codepage or helper program, or other error.


      Looking at dmesg, I see:



      overlayfs: filesystem on 'tmp/upper' not supported as upperdir


      Why would archivemount not supported? Is there a way around that problem?










      share|improve this question















      I am trying to apply an overlay using overlayfs over a filesystem mounted with archivemount:



      mkdir -p {upper,work,mount}
      tar zcf somefile upper/ work/ mount/
      mkdir tmp
      archivemount -o allow_root -o fsname=ext4 somefile tmp
      sudo mount -t overlay -o lowerdir=/,upperdir=tmp/upper,workdir=tmp/work overlayfs tmp/mount


      However, mount fails with:



      mount: /tmp/test8/tmp/mount: wrong fs type, bad option, bad superblock on overlayfs, missing codepage or helper program, or other error.


      Looking at dmesg, I see:



      overlayfs: filesystem on 'tmp/upper' not supported as upperdir


      Why would archivemount not supported? Is there a way around that problem?







      linux fuse overlayfs






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 days ago









      Jeff Schaller

      37.5k1052121




      37.5k1052121










      asked 2 days ago









      Luke Skywalker

      1135




      1135






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          The documentation for the overlayfs kernel module states:




          The upper filesystem will normally be writable and if it is it must support the creation of trusted.* extended attributes, and
          must provide valid d_type in readdir responses, so NFS is not suitable.




          So archivemount probably doesn't implement either one of these features, which makes it unsuitable for use as a upper layer in a writable overlayfs.



          Note that the documentation continues with:




          A read-only overlay of two read-only filesystems may use any filesystem type.




          So if a read-only overlayfs is enough for your needs, setting it up on top of archivemount should work even for the lower layer, just having to mount everything read-only for that case.





          Note that there aren't limitations in the FUSE protocol itself that make any FUSE mounts unsuitable for use as a writable upper layer in overlayfs.



          Specifically, FUSE exposes functions to query and set extended attributes and it also exposes the d_type field for implementations to fill.



          But specific FUSE applications need to implement those features for them to be available.



          Regarding extended attributes, a separate technical limitation for archivemount is that not all archive formats support storing extended attributes, so it's possible even if archivemount would implement support for extended attributes, that it would not be available on all supported archive formats.



          (See documentation for --xattrs option of GNU tar for some more details.)






          share|improve this answer























          • I missed that bit of the tar documentation. I tried it and it didn't help. Note that archivemount man page also mention extended attributes, but only for MacFUSE. I don't know if it means that they enabled by default on linux or they are just not supported on linux.
            – Luke Skywalker
            2 days ago








          • 1




            @LukeSkywalker Looking at the code, it doesn't seem like archivemount supports extended attributes, since the functions that would implement them are commented out. Looking at the code, there are no references to d_type either, so it seems it doesn't implement that either...
            – Filipe Brandenburger
            2 days ago











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "106"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f486946%2foverlayfs-over-archivemount%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          The documentation for the overlayfs kernel module states:




          The upper filesystem will normally be writable and if it is it must support the creation of trusted.* extended attributes, and
          must provide valid d_type in readdir responses, so NFS is not suitable.




          So archivemount probably doesn't implement either one of these features, which makes it unsuitable for use as a upper layer in a writable overlayfs.



          Note that the documentation continues with:




          A read-only overlay of two read-only filesystems may use any filesystem type.




          So if a read-only overlayfs is enough for your needs, setting it up on top of archivemount should work even for the lower layer, just having to mount everything read-only for that case.





          Note that there aren't limitations in the FUSE protocol itself that make any FUSE mounts unsuitable for use as a writable upper layer in overlayfs.



          Specifically, FUSE exposes functions to query and set extended attributes and it also exposes the d_type field for implementations to fill.



          But specific FUSE applications need to implement those features for them to be available.



          Regarding extended attributes, a separate technical limitation for archivemount is that not all archive formats support storing extended attributes, so it's possible even if archivemount would implement support for extended attributes, that it would not be available on all supported archive formats.



          (See documentation for --xattrs option of GNU tar for some more details.)






          share|improve this answer























          • I missed that bit of the tar documentation. I tried it and it didn't help. Note that archivemount man page also mention extended attributes, but only for MacFUSE. I don't know if it means that they enabled by default on linux or they are just not supported on linux.
            – Luke Skywalker
            2 days ago








          • 1




            @LukeSkywalker Looking at the code, it doesn't seem like archivemount supports extended attributes, since the functions that would implement them are commented out. Looking at the code, there are no references to d_type either, so it seems it doesn't implement that either...
            – Filipe Brandenburger
            2 days ago















          up vote
          1
          down vote













          The documentation for the overlayfs kernel module states:




          The upper filesystem will normally be writable and if it is it must support the creation of trusted.* extended attributes, and
          must provide valid d_type in readdir responses, so NFS is not suitable.




          So archivemount probably doesn't implement either one of these features, which makes it unsuitable for use as a upper layer in a writable overlayfs.



          Note that the documentation continues with:




          A read-only overlay of two read-only filesystems may use any filesystem type.




          So if a read-only overlayfs is enough for your needs, setting it up on top of archivemount should work even for the lower layer, just having to mount everything read-only for that case.





          Note that there aren't limitations in the FUSE protocol itself that make any FUSE mounts unsuitable for use as a writable upper layer in overlayfs.



          Specifically, FUSE exposes functions to query and set extended attributes and it also exposes the d_type field for implementations to fill.



          But specific FUSE applications need to implement those features for them to be available.



          Regarding extended attributes, a separate technical limitation for archivemount is that not all archive formats support storing extended attributes, so it's possible even if archivemount would implement support for extended attributes, that it would not be available on all supported archive formats.



          (See documentation for --xattrs option of GNU tar for some more details.)






          share|improve this answer























          • I missed that bit of the tar documentation. I tried it and it didn't help. Note that archivemount man page also mention extended attributes, but only for MacFUSE. I don't know if it means that they enabled by default on linux or they are just not supported on linux.
            – Luke Skywalker
            2 days ago








          • 1




            @LukeSkywalker Looking at the code, it doesn't seem like archivemount supports extended attributes, since the functions that would implement them are commented out. Looking at the code, there are no references to d_type either, so it seems it doesn't implement that either...
            – Filipe Brandenburger
            2 days ago













          up vote
          1
          down vote










          up vote
          1
          down vote









          The documentation for the overlayfs kernel module states:




          The upper filesystem will normally be writable and if it is it must support the creation of trusted.* extended attributes, and
          must provide valid d_type in readdir responses, so NFS is not suitable.




          So archivemount probably doesn't implement either one of these features, which makes it unsuitable for use as a upper layer in a writable overlayfs.



          Note that the documentation continues with:




          A read-only overlay of two read-only filesystems may use any filesystem type.




          So if a read-only overlayfs is enough for your needs, setting it up on top of archivemount should work even for the lower layer, just having to mount everything read-only for that case.





          Note that there aren't limitations in the FUSE protocol itself that make any FUSE mounts unsuitable for use as a writable upper layer in overlayfs.



          Specifically, FUSE exposes functions to query and set extended attributes and it also exposes the d_type field for implementations to fill.



          But specific FUSE applications need to implement those features for them to be available.



          Regarding extended attributes, a separate technical limitation for archivemount is that not all archive formats support storing extended attributes, so it's possible even if archivemount would implement support for extended attributes, that it would not be available on all supported archive formats.



          (See documentation for --xattrs option of GNU tar for some more details.)






          share|improve this answer














          The documentation for the overlayfs kernel module states:




          The upper filesystem will normally be writable and if it is it must support the creation of trusted.* extended attributes, and
          must provide valid d_type in readdir responses, so NFS is not suitable.




          So archivemount probably doesn't implement either one of these features, which makes it unsuitable for use as a upper layer in a writable overlayfs.



          Note that the documentation continues with:




          A read-only overlay of two read-only filesystems may use any filesystem type.




          So if a read-only overlayfs is enough for your needs, setting it up on top of archivemount should work even for the lower layer, just having to mount everything read-only for that case.





          Note that there aren't limitations in the FUSE protocol itself that make any FUSE mounts unsuitable for use as a writable upper layer in overlayfs.



          Specifically, FUSE exposes functions to query and set extended attributes and it also exposes the d_type field for implementations to fill.



          But specific FUSE applications need to implement those features for them to be available.



          Regarding extended attributes, a separate technical limitation for archivemount is that not all archive formats support storing extended attributes, so it's possible even if archivemount would implement support for extended attributes, that it would not be available on all supported archive formats.



          (See documentation for --xattrs option of GNU tar for some more details.)







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 2 days ago

























          answered 2 days ago









          Filipe Brandenburger

          6,8001732




          6,8001732












          • I missed that bit of the tar documentation. I tried it and it didn't help. Note that archivemount man page also mention extended attributes, but only for MacFUSE. I don't know if it means that they enabled by default on linux or they are just not supported on linux.
            – Luke Skywalker
            2 days ago








          • 1




            @LukeSkywalker Looking at the code, it doesn't seem like archivemount supports extended attributes, since the functions that would implement them are commented out. Looking at the code, there are no references to d_type either, so it seems it doesn't implement that either...
            – Filipe Brandenburger
            2 days ago


















          • I missed that bit of the tar documentation. I tried it and it didn't help. Note that archivemount man page also mention extended attributes, but only for MacFUSE. I don't know if it means that they enabled by default on linux or they are just not supported on linux.
            – Luke Skywalker
            2 days ago








          • 1




            @LukeSkywalker Looking at the code, it doesn't seem like archivemount supports extended attributes, since the functions that would implement them are commented out. Looking at the code, there are no references to d_type either, so it seems it doesn't implement that either...
            – Filipe Brandenburger
            2 days ago
















          I missed that bit of the tar documentation. I tried it and it didn't help. Note that archivemount man page also mention extended attributes, but only for MacFUSE. I don't know if it means that they enabled by default on linux or they are just not supported on linux.
          – Luke Skywalker
          2 days ago






          I missed that bit of the tar documentation. I tried it and it didn't help. Note that archivemount man page also mention extended attributes, but only for MacFUSE. I don't know if it means that they enabled by default on linux or they are just not supported on linux.
          – Luke Skywalker
          2 days ago






          1




          1




          @LukeSkywalker Looking at the code, it doesn't seem like archivemount supports extended attributes, since the functions that would implement them are commented out. Looking at the code, there are no references to d_type either, so it seems it doesn't implement that either...
          – Filipe Brandenburger
          2 days ago




          @LukeSkywalker Looking at the code, it doesn't seem like archivemount supports extended attributes, since the functions that would implement them are commented out. Looking at the code, there are no references to d_type either, so it seems it doesn't implement that either...
          – Filipe Brandenburger
          2 days ago


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f486946%2foverlayfs-over-archivemount%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          サソリ

          広島県道265号伴広島線

          Setup Asymptote in Texstudio