How to install MarcEdit

I wish to install MarcEdit.

MarcEdit is a closed source app build with .NET that runs over mono. Is usually used on libraries, where MARC records is a common format.

2

1 Answer

Follow this installation procedure

sudo apt install mono-runtime yaz zlibc libxml2 libxslt1-dev # Dependencies
wget "" # Download MarcEdit 7
chmod u+x marcedit7.run # Make it executable
./marcedit7.run --target $HOME/marcedit # Unpackage it on preferred folder
cd $HOME/marcedit
./create_shortcut.sh # Generate shortcut (on ~/.local/share/applications), without using desktop-file-install.
sudo update-desktop-database

screenshot

Notes

  • Keep in mind MarcEdit is a non-free software build with C#/Mono and is very buggy under Linux. Either way sadly doesn't exist an open source alternative (so far).
  • On newer versions (7.3.11) I came across to this issue (Mono 4.6.2, with 6.12.0.122 seems to work). You can report any bugs here.

Why this post: I found this procedure much easier, straightforward and complete way for IT people working on libraries than the instructions of the author. Moreover, this way works and the one shown by the author site doesn't. Doesn't mention chmod the .run file, nor how to generate and move the shortcut to the appropriate location. Also, won't work without fixing the –target to --target, something probably newbies will miss.

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like