From Fedora Project Wiki

No edit summary
(Replaced content with '{{Admon/warning | F13 | Beat owner should begin placing Fedora 13 content in this beat. }} <noinclude>Category:Release Notes<noinclude> Category:Documentation_beats')
Line 1: Line 1:
{{Admon/warning | Document is Final | The contents of this beat have been sent for translation for the GA version of the Release Notes.  Any additional changes to this beat will not appear until after the release of Fedora 12.  If you have zero-day changes, be sure to post a bug. }}
{{Admon/warning | F13 | Beat owner should begin placing Fedora 13 content in this beat. }}


== File Systems ==


=== fusecompress ===
<noinclude>[[Category:Release Notes]]<noinclude>
Fusecompress is a compressing filesystem mountable by unprivileged users.  (Note: this may mean we don't want this note
[[Category:Documentation_beats]]
in the system admin section).  Fedora-11 had fusecompress-1.99.19.  Fedora-12
updates to fusecompress-2.6.  This fixes many very nasty bugs but changes
the on-disk format.  Users with fusecompress filesystems will need to migrate
their data to the new format.  Unless they decompress before upgrading, they will need the fusecompress_offline1 package to do so.
 
If a user doesn't read these release notes and realize they need to upgrade the format, the first indication they'll have that something is wrong will probably be when they try to read a text file and it is binary:
 
<pre>
$ less test.txt
"test.dump" may be a binary file.  See it anyway?
</pre>
 
I don't know how we can work around that though.
 
The basic method of updating their system is documented in a /usr/share/doc/fusecompress_offline1-%{version}/README.fedora file in the fusecompress1 package.  The fusecompress package has a README.fedora that tells the user to install fusecompress_offline1 and read that file.  I'm copying the upgrade instructions below.  I don't know if you'll want it in the release notes or just a pointer to the in-package document.
 
<pre>
Let's say that in Fedora 11 your old fusecompress rootDir (where the files are
actually stored) is in ~/.fusestorage and you mount it on ~/storage. Now you've
updated to Fedora 12 and need to get your fusecompress filesystems updated to
the new on-disk format.  Here's the basic steps::
 
    # Make sure the old fusecompress filesystem is unmounted
    fusermount -u ~/storage
    # Move it to a new location
    mv ~/.fusestorage ~/.fusestorage.old
    # Create a new directory for our new format data
    mkdir ~/.fusestorage
    # Mount the new directory.  It's now a new format fusecompress filesystem
    fusecompress ~/.fusestorage ~/storage
    # Decompress all the files in the old fusecompress data directory
    fusecompress_offline1 ~/.fusestorage.old
    # Move the files into the new format storage
    mv .fusestorage.old/* ~/storage
    # If you have any hidden files, remember to move them too
    mv .fusestorage.old/.?* ~/storage
 
Note that to use this exact procedure you need to have enough disk space to
uncompress all of the files stored in ~/.fusestorage.old.  If you don't have
that much space, you'll have to run fusecompress_offline1 on portions of
~/.fusestorage.old and move them to ~/storage where they'll be recompressed,
freeing up the space for you to run fusecompress_offline1 on more files.
</pre>

Revision as of 21:17, 16 February 2010

Warning.png
F13
Beat owner should begin placing Fedora 13 content in this beat.