Skip to content
Vojtech Trefny edited this page Sep 7, 2022 · 6 revisions

Welcome to the blivet-gui wiki!

Installation

Fedora

blivet-gui and all it's dependencies is available in Fedora repositories.

sudo dnf install blivet-gui

Debian/Ubuntu

Blivet and blivet-gui are not available in Debian (Ubuntu) repositories. Most of the dependencies are available and can be easily installed, blivet and blivet-gui can be installed directly from GitHub using pip, the package installer for Python.

  • Install dependencies:
    • Ubuntu 18.04
    sudo apt-get install python3-blockdev python3-bytesize python3-pyudev python3-selinux python3-parted lvm2-dbusd   adwaita-icon-theme git python3-pip python3-gi-cairo gir1.2-gtk-3.0 gir1.2-blockdev-2.0 libblockdev-lvm2 libblockdev-btrfs2 libblockdev-swap2 libblockdev-loop2 libblockdev-crypto2 libblockdev-mpath2 libblockdev-dm2 libblockdev-mdraid2
    
    • Ubuntu 19.04/Debian 10 and newer
    sudo apt-get install python3-blockdev python3-bytesize python3-pyudev python3-selinux python3-parted lvm2-dbusd adwaita-icon-theme git python3-pip python3-gi-cairo gir1.2-gtk-3.0 gir1.2-blockdev-2.0 libblockdev-lvm2 libblockdev-btrfs2 libblockdev-swap2 libblockdev-loop2 libblockdev-crypto2 libblockdev-mpath2 libblockdev-dm2 libblockdev-mdraid2 libblockdev-nvdimm2
    
  • Install pip (needed to install blivet and blivet-gui)
sudo apt-get install python3-pip
  • Install pid library using pip
sudo pip3 install pid
  • Install blivet library using pip
    • Ubuntu 18.04
    sudo pip3 install git+http://github.com/storaged-project/blivet.git@3.0-release
    
    • Ubuntu 19.04/Debian 10 and newer
    sudo pip3 install git+http://github.com/storaged-project/blivet.git@3.1-release
    
  • Install blivet-gui
sudo pip3 install git+http://github.com/storaged-project/blivet-gui.git

OpenMandriva

  • Install dependencies:
sudo dnf install polkit-agent libblockdev-plugins-all python python-gobject3 gtk+3.0 lib64gtk-gir3.0 python3-libselinux python-blockdev python-bytesize python-parted python-gi pyudev python-six systemd
  • Install pip and git (needed to install blivet and blivet-gui)
sudo dnf install python3-pip git
  • Install pid library using pip
sudo pip3 install pid
  • Install blivet library using pip
sudo pip3 install blivet
  • Install blivet-gui
sudo pip3 install git+http://github.com/storaged-project/blivet-gui.git
Clone this wiki locally