Thanks much for your response.
I go it working.
I am going to describe the steps for the next poor shlepp that needs to go through this.
On the linuxband website "documentation" page
http://linuxband.org/documentation.html
It has a link for the tar, on there "dowloads" page
http://linuxband.org/downloads.html
http://linuxband.org/assets/sources/...12.02.1.tar.gz
I used the the "wget" comand in the terminal to download that file
thus;
Code:
wget http://linuxband.org/assets/sources/linuxband-12.02.1.tar.gz
This put that file in the "downloads" folder in the home directory
I navigated to that directory using
I checked the contents of the directory to make sure that that tar ball was there by using
which listed the contents and confirmed that that file was indeed there. Among the contents of the directory, there was/is a file called "linuxband-12.02.1.tar.gz"
I extracted the tar ball using
Code:
tar -zxvf linuxband-12.02.1.tar.gz
using "dir" again, shows that there is now w folder called "linuxband-12-02-1"; NOTE - the "tar.gz" is gone from the name
using the "change directory" command, I navigated to the newly created folder(directory) thus;
Code:
cd linuxband-12.02.1
Now I am working from within the new folder(directory) called "linuxand-12.02.1"
ALL FOLLOWING STEPS ARE PERFORMED WITHIN THIS DIRECTORY. Do not "change directories" during the remainding steps.
NOW....here is the important part....
BEFORE DOING ANYTHING ELSE - -
run the four apt-get installations shown on the website's documentation page
They are as follows; (but wait, before you do, keep reading)
sudo apt-get install libjack-dev
sudo apt-get install libsmf-dev
sudo apt-get install python-gtk2
sudo apt-get install python-gtksourceview2
when I ran
Code:
sudo apt-get install libjack-dev
I got the following error (paraphrased)
Quote:
The following packages have unmet dependencies:
libjack-dev : Depends: libjack0 (= 1:0.121.3+20120418git75e3e20b-2.1ubuntu1) bu
|
So....I did this
Code:
sudo apt-get install jack0
YAY! it did something that looked important
THEN..I did the rest of the four suggested on the documentation page
FROM WITHIN the "linuxband-12.02.1" folder(directory); that is, I did not change directories
Code:
sudo apt-get install libjack-dev
Code:
sudo apt-get install libsmf-dev
Code:
sudo apt-get install python-gtk2
Code:
sudo apt-get install python-gtksourceview2
NOW - I was ready to to the following FROM WITHIN THE "linuxband-12.02.1" directory
(this is a file that was created when the tar ball was extracted, and resides in the "linuxband-12.02.1" directory rom which you are now working)
then
I left out all the false-starts due to not following the above steps in sequence, and typing errors.
Now, in the terminal, all I do is type "linuxband" and hit enter and the program starts
Now I have to learn how to use it!!
yay!