diff options
author | Dante Catalfamo | 2020-07-01 00:32:13 -0400 |
---|---|---|
committer | Dante Catalfamo | 2020-07-01 00:32:13 -0400 |
commit | 33de80d04d36d507a9c36868f6bbf94a073d0504 (patch) | |
tree | d2ff68abde8da062310480506432fa9d35dadec5 /content | |
parent | 834cabb52385755aa194e845ad4a69ee0aa3b8c1 (diff) | |
download | blog-33de80d04d36d507a9c36868f6bbf94a073d0504.tar.gz blog-33de80d04d36d507a9c36868f6bbf94a073d0504.tar.bz2 blog-33de80d04d36d507a9c36868f6bbf94a073d0504.zip |
Add some minor corrections to bitwig article
Diffstat (limited to 'content')
-rw-r--r-- | content/posts/bitwig-studio-on-fedora-32/index.org | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/posts/bitwig-studio-on-fedora-32/index.org b/content/posts/bitwig-studio-on-fedora-32/index.org index 7337b12..15deac3 100644 --- a/content/posts/bitwig-studio-on-fedora-32/index.org +++ b/content/posts/bitwig-studio-on-fedora-32/index.org @@ -54,7 +54,7 @@ Error: Transaction test error: #+END_SRC This seems to be the case with every package I've tried converting -with =alien=, it seems to be a bug that's cropped up since its last +with =alien=, it appears to be a bug that's cropped up since its last release in 2016. It's caused by =alien= leaving the paths =/= and =/usr/bin= in the @@ -106,13 +106,13 @@ After this we build a binary package using =rpmbuild=. sudo rpmbuild --buildroot=/path/to/bitwig-studio-3.2.3/ -bb bitwig-studio-3.2.3-2.spec #+END_SRC -You must specify the full path for the =--buildroot== argument. +You must specify the full path in the =--buildroot== argument. The created =.rpm= package should now be up a directory, next to the initial =.deb= file. To install it we run #+BEGIN_SRC shell -cd .. +cd .. # go up to where the rpm is located sudo dnf install bitwig-studio-3.2.3-2.x86_64.rpm #+END_SRC @@ -121,7 +121,7 @@ fail to start, complaining that =libbz2.so.1.0= was missing. This could be solved by creating a symbolic link to the system's version. #+BEGIN_SRC shell -sudo ln -s /usr/lib64/libbz2.so.1 /opt/bitwig-studio/lib/bitwig-studio/ +sudo ln -s /usr/lib64/libbz2.so.1 /opt/bitwig-studio/lib/bitwig-studio/libbz2.so.1.0 #+END_SRC It doesn't seem to be an issue with the latest release, but I'll leave |