LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 10-04-2014, 09:58 AM   #1
phazon
Member
 
Registered: Apr 2006
Location: Wilmington, DE
Distribution: SolydXK, Knoppix
Posts: 151

Rep: Reputation: 18
linuxband, how to install?


Being not such a noob anymore, I still don't have the chops to dig into some of the advanced installation processes required when there is not a prepackaged installation available with a single click in a software manager window.

That said, I have been wanting to install linuxband, but hit the brick-wall of tar and dependincies, etc.

The website

http://linuxband.org/documentation.html

has some fast and loose statements on how to install it, but frankly, those statements are meant for peope who know there way around the "old school" installation methods that were the only way to install things back around 2004....

Is there someone out there who would be willing to take me step by step through what it would take to install linuxband based on the information given on the website?

I am using Mint 17

Thanks
 
Old 10-04-2014, 12:04 PM   #2
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,776

Rep: Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562Reputation: 2562
If you are using Debian, you download the linux band tar.gz file first then open a terminal and go to your Downloads directory, or wherever this file downloaded and you can either right-click on its icon to extract it or extract it in a terminal. The link below explains this in detail. Then go back to the Linux Band page and run the four apt-get commands to install the additional needed software. Under Installation on their page, you run those commands from inside the directory where the files were extracted.

http://www.cyberciti.biz/faq/linux-u...ct-targz-file/

The last update on that site was well over two years ago.

Last edited by yancek; 10-04-2014 at 12:06 PM.
 
Old 10-05-2014, 10:44 AM   #3
phazon
Member
 
Registered: Apr 2006
Location: Wilmington, DE
Distribution: SolydXK, Knoppix
Posts: 151

Original Poster
Rep: Reputation: 18
see next

Last edited by phazon; 10-05-2014 at 10:56 AM.
 
Old 10-05-2014, 10:44 AM   #4
phazon
Member
 
Registered: Apr 2006
Location: Wilmington, DE
Distribution: SolydXK, Knoppix
Posts: 151

Original Poster
Rep: Reputation: 18
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

Code:
cd Downloads
I checked the contents of the directory to make sure that that tar ball was there by using

Code:
dir
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

Code:
./configure
(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)

Code:
make
then

Code:
make install
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!

Last edited by phazon; 10-05-2014 at 10:52 AM.
 
Old 10-05-2014, 11:23 AM   #5
phazon
Member
 
Registered: Apr 2006
Location: Wilmington, DE
Distribution: SolydXK, Knoppix
Posts: 151

Original Poster
Rep: Reputation: 18
NOTE: Not sute if in fact the tar ball automatically went to "downloads" folder/directory. I might have used the regular flder browser gui to put it there, then "cd Downloads" in terminal....
 
Old 10-06-2014, 07:05 AM   #6
phazon
Member
 
Registered: Apr 2006
Location: Wilmington, DE
Distribution: SolydXK, Knoppix
Posts: 151

Original Poster
Rep: Reputation: 18
later realixed that I "broke" jackd wen following the four steps below....

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
Since I ha already installed Ardour, it seems that the Ardour installation process automatically installs jackd, with all the libraries, etc.

After installing linuxband, and then going back to try to run Ardour, I got warnings about jackd configurations, and then when I tried to install jackd, the warnings were something about duplicate installations would break it, etc.... I realized that this is what must have happened already since ARdour had already installed it, and then the four steps abouve put more crap in the destination folders etc.

I ran


Code:
sudo apt-get remove jackd
then


Code:
sudo apt-get install jackd
went back to run Ardour to see if that fixed it....interesting, Ardour is now gone from my system...!?!

I had go back and install Ardour again, now Ardour works.

It seems that Ardour is SO dependant on jackd being present, that when it was removed, Ardour took a dive with it...interesting....

By the way, I never could get linuxband working. I am able to "spawn" it, but nothgin within the program seems to work.

The quality of the samples of music that I have heard, that are done with linuxband that I have heard pails by comparison to projects created with Ardour anyway, so I am not heart broken.

I needed to learn how to install things using the "old" command line method when "apt-get", "yum" etc won't work anyway.

oh, just discovered the "qjack" went bye-bye too after removing jackd...fascinating

Last edited by phazon; 10-06-2014 at 07:08 AM. Reason: more info
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] [RHL 6.2] Fresh install. XWindows Server didn't install. Can I install it manually? Patriot2135 Red Hat 9 11-19-2013 12:37 AM
yum install lib getting fails yum install lib* leads to install 1050 dependency pkg LittleMaster Linux - Server 3 10-29-2012 01:14 AM
Uncertain how to configure/install packages & compiler before install VMware on FC8. Azazwa Linux - Newbie 1 03-28-2009 07:27 PM
Ubuntu as frugal install, iso install, img install? impossible? nooby Ubuntu 15 08-22-2008 05:49 AM
Red Hat Linux 9 install: error "No devices found to install ... gunneszz Red Hat 1 03-10-2008 04:52 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:07 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration