You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The .tar files created with the library can be opened with 7zip, they can be extracted with "tar -xf" but the linux program xarchiver (default with some low memory graphical instalations - in my case debian with xfce) says that the archive format is not recognized.
Another place where xarchiver is installed by default is the raspberry pi debian instalation.
Reproduction Code
No response
Steps to reproduce
Simplest example I can come up with:
usingFileStreamos=newFileStream("test.tar",FileMode.Create);usingTarOutputStreamtar=newTarOutputStream(os);byte[]data=Encoding.UTF8.GetBytes("my text contents");TarEntryentry=TarEntry.CreateTarEntry("myfile.txt");entry.Size=data.Length;tar.PutNextEntry(entry);tar.Write(data);tar.CloseEntry();
Expected behavior
The archive should be opened normally as it does in other applications.
Operating System
Linux
Framework Version
.NET 6
Tags
Tar
Additional context
There is a chance that xarchiver is just bad considering other software opens the archive.
But then again xarchiver opens tar archives made with other software.
The text was updated successfully, but these errors were encountered:
Describe the bug
The .tar files created with the library can be opened with 7zip, they can be extracted with "tar -xf" but the linux program xarchiver (default with some low memory graphical instalations - in my case debian with xfce) says that the archive format is not recognized.
Another place where xarchiver is installed by default is the raspberry pi debian instalation.
Reproduction Code
No response
Steps to reproduce
Simplest example I can come up with:
Expected behavior
The archive should be opened normally as it does in other applications.
Operating System
Linux
Framework Version
.NET 6
Tags
Tar
Additional context
There is a chance that xarchiver is just bad considering other software opens the archive.
But then again xarchiver opens tar archives made with other software.
The text was updated successfully, but these errors were encountered: