Welcome to the Reiser4 Wiki, the Wiki for users and developers of the ReiserFS and Reiser4 filesystems.

For now, most of the documentation is just a snapshot of the old Namesys site (archive.org, 2007-09-29).

There was also a Reiser4 Wiki (archive.org, 2007-07-06) once on pub.namesys.com.

Reiserfsprogs

From Reiser4 FS Wiki
(Difference between revisions)
Jump to: navigation, search
(url updated)
(+zypper)
Line 3: Line 3:
 
  sudo apt-get install uuid-dev            # Debian, Ubuntu
 
  sudo apt-get install uuid-dev            # Debian, Ubuntu
 
  sudo yum install libuuid-devel          # Fedora
 
  sudo yum install libuuid-devel          # Fedora
 +
sudo zypper install libuuid-devel        # openSUSE
 
   
 
   
 
  wget https://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.21/reiserfsprogs-3.6.21.tar.{sign,xz}
 
  wget https://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.21/reiserfsprogs-3.6.21.tar.{sign,xz}

Revision as of 02:58, 11 October 2012

The tools to maintain a ReiserFS (Reiser v3) filesystem are called reiserfsprogs and can be found on the openSUSE Build Service. If your distribution does not ship a pre-compiled package, we have to build this manually:

sudo apt-get install uuid-dev            # Debian, Ubuntu
sudo yum install libuuid-devel           # Fedora
sudo zypper install libuuid-devel        # openSUSE

wget https://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.21/reiserfsprogs-3.6.21.tar.{sign,xz}
xz -d reiserfsprogs-3.6.21.tar.xz
gpg --verify reiserfsprogs-3.6.21.tar.sign

tar -xf reiserfsprogs-3.6.21.tar
cd reiserfsprogs-3.6.21
./configure --prefix=/opt/reiserfsprogs
make && sudo make install
Personal tools