Ubuntu Forums Archive Viewer

BUM Compiles but not in menu

Archived thread 107942 from BUM - Boot Up Manager. Markdown source: BUM_-_Boot_Up_Manager/thread_107942_BUM_Compiles_but_not_in_menu.md

Original URL About this archive
#1

I compiled the latest version of BUM from the tar ball. I managed to get it to compile, i.e. /usr/local/bin there is a file called bum, a perl script?

It does not appear in my Gnome/Ubutu System/Admistration menu.

Can I add it manually?

If it's a perl script, why does it need to be compiled?

TIA Roger

#2

I compiled the latest version of BUM from the tar ball. I managed to get it to compile, i.e. /usr/local/bin there is a file called bum, a perl script?

It does not appear in my Gnome/Ubutu System/Admistration menu.

Can I add it manually?

If it's a perl script, why does it need to be compiled?

TIA Roger

In fact it doesn't need to be "compiled", but "built". When you run

make && sudo make install

the Makefile provides to check if all needed dependecies are on your pc, copy the files on specific folders (there are several files, libraries are on another folder), create the desktop entry for the menu, put the translation files into the proper directories...and so on.

If you have configured it to be installed in /usr/local you can't find the menu entry in Grome! In order to have it, you should run (as reported on the web site http://www.marzocca.net/linux/bum.html ):

tar -xvzf bum-2.1.3.tar.gz cd bum-2.1.3 ./configure --prefix=/usr make sudo make install

Read the INSTALL file for configuration options.

Anyway, if you run Ubuntu Dapper or Debian testing/unstable, you can just do:

sudo apt-get install bum

If you are running Breezy, download the latest .deb package and install it with dpkg -i

#3

Thanks for the reply, and the explanation. Missed the instructions on the web site. Just did a ./configure - Make - Make install, no switches.

I know just enough to be dangerous.

TIA Roger