SEARCH

Enter your search query in the box above ^, or use the forum search tool.

You are not logged in.

#26 2011-12-09 07:46:32

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

Ok, it seems to work (a combined dpkg -i and apt-get -f install) as long as the required packages are in the repos:

http://www.thinkplexx.com/learn/snippet … ith-dpkg-i


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

Be excellent to each other!

#27 2011-12-09 07:51:24

dotism
#! Member
Registered: 2011-12-01
Posts: 94
Website

Re: A Music Management Recommendation?

WHOO! That rules, machinebacon, thank you!

Edit: As usual, my excitement was premature wink

Last edited by dotism (2011-12-09 07:55:30)

Offline

#28 2011-12-09 07:59:47

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

The first thing should always be

apt-cache search searchterm1 searchterm2

to check if the required software is already in the repos. This saves you from dependency hell. Or you check on packages.debian.org if the future release of Debian features your required software. In this case you can consider an upgrade to Wheezy/Sid on a separate partition (or a stick) for trying. Often packages are available in Testing/Unstable and this would mean: stay with Stable until 2013 big_smile


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#29 2011-12-09 08:00:27

dotism
#! Member
Registered: 2011-12-01
Posts: 94
Website

Re: A Music Management Recommendation?

dotism@something:~$ sudo apt-get install libqt4-sql-sqlite
[sudo] password for dotism: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 clementine : Depends: libmtp8 (>= 0.3.1) but it is not going to be installed
              Depends: libqt4-webkit (>= 4:4.5.3) but it is not going to be installed
 libqt4-sql-sqlite : Depends: libqt4-sql (= 4:4.6.3-4+squeeze1) but 4:4.7.3-5 is to be installed
                     Depends: libqtcore4 (= 4:4.6.3-4+squeeze1) but 4:4.7.3-5 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
dotism@something:~$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  libswscale0 libavutil50 libavutil49 gstreamer0.10-plugins-ugly libindicate-qt1 libftgl2
  projectm-data libavcore0 libprojectm2 librasqal2 libdvbpsi6 libavcodec52 libindicate5
  libpango1.0-common libdbusmenu-glib3 libmatroska0 qt4-qtconfig libpostproc51
  libechonest1.2 libavformat52 libqxt-core0 libsidplay1 libqxt-gui0 libeggdbus-1-0
  liboil0.3 libebml0
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  clementine
0 upgraded, 0 newly installed, 1 to remove and 150 not upgraded.
1 not fully installed or removed.
After this operation, 13.1 MB disk space will be freed.
Do you want to continue [Y/n]? y
(Reading database ... 134990 files and directories currently installed.)
Removing clementine ...
Processing triggers for desktop-file-utils ...
Processing triggers for hicolor-icon-theme ...
dotism@something:~$ 

What? I think I need to logout.

Offline

#30 2011-12-09 08:00:52

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

dotism wrote:

WHOO! That rules, machinebacon, thank you!

Edit: As usual, my excitement was premature wink

What is the exact package that requires these ugly dependencies?
Edit: Found your post big_smile

Last edited by machinebacon (2011-12-09 08:01:22)


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#31 2011-12-09 08:03:02

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

Ah yes:

apt-cache depends amarok | grep qt
  Depends: libqt4-dbus
  Depends: libqt4-network
  Depends: libqt4-script
  Depends: libqt4-sql
  Depends: libqt4-svg
  Depends: libqt4-xml
  Depends: libqtcore4
  Depends: libqtgui4
  Depends: libqtwebkit4
  Depends: libqtscript4-core
  Depends: libqtscript4-gui
  Depends: libqtscript4-network
  Depends: libqtscript4-xml
  Depends: libqtscript4-sql
  Depends: libqtscript4-uitools
  Suggests: libqt4-sql-sqlite
  Suggests: libqt4-sql-mysql
  Suggests: libqt4-sql-psql

You can remove Amarok (purge would be better, I suppose) and then try Clementine installation again.


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#32 2011-12-09 08:04:48

dotism
#! Member
Registered: 2011-12-01
Posts: 94
Website

Re: A Music Management Recommendation?

machinebacon wrote:

The first thing should always be

apt-cache search searchterm1 searchterm2

to check if the required software is already in the repos. This saves you from dependency hell. Or you check on packages.debian.org if the future release of Debian features your required software. In this case you can consider an upgrade to Wheezy/Sid on a separate partition (or a stick) for trying. Often packages are available in Testing/Unstable and this would mean: stay with Stable until 2013 big_smile

I am trying to set myself on the path of sid (I tried once but everything was so b0rked that I ran away back to stable)... I have been joking that trying to get a good music management solution up and running is turning out to be more difficult than installing sid wink

Offline

#33 2011-12-09 08:05:31

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

Err, dotism, I just noticed:

The following packages will be REMOVED:
  clementine
0 upgraded, 0 newly installed, 1 to remove and 150 not upgraded.
1 not fully installed or removed.

150 not upgraded wink Do this first, maybe it solves itself.


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#34 2011-12-09 08:12:54

dotism
#! Member
Registered: 2011-12-01
Posts: 94
Website

Re: A Music Management Recommendation?

machinebacon... Can you help me fix this? I've tried logging out and back in and I am still faced with this problem:

dotism@something:~/downloads$ sudo apt-get upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 clementine : Depends: libmtp8 (>= 0.3.1) but it is not installed
              Depends: libqt4-webkit (>= 4:4.5.3) but it is not installed
              Depends: libqt4-sql-sqlite but it is not installed
E: Unmet dependencies. Try using -f.
dotism@something:~/downloads$

I admit that I am kinda scared.

Offline

#35 2011-12-09 08:15:20

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

Have you tried the suggested

sudo apt-get -f install

Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#36 2011-12-09 08:16:18

Milozzy
#! Die Hard
Registered: 2011-02-22
Posts: 587
Website

Re: A Music Management Recommendation?

I recommend gmusicbrowser too...As alternatives, Quodlibet and Guayadeque are great softwares.

Online

#37 2011-12-09 08:18:22

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

After this you can

sudo apt-get install libmtp8 libqt4-webkit libqt4-sql-sqlite

Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#38 2011-12-09 08:19:52

dotism
#! Member
Registered: 2011-12-01
Posts: 94
Website

Re: A Music Management Recommendation?

Yes, it just uninstalls Clementine again. No matter what I do with apt or dpkg, I just get this clementine nonsense. It is stuck.

Edit: It freed up... I apologize for the drama.

Last edited by dotism (2011-12-09 08:20:58)

Offline

#39 2011-12-09 08:23:29

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

big_smile

apt-cache depends clementine 
clementine
  Depends: libc6
  Depends: libechonest1.2
  Depends: libgcc1
  Depends: libgdk-pixbuf2.0-0
  Depends: libglib2.0-0
  Depends: libgpod4
  Depends: libgstreamer0.10-0
  Depends: libimobiledevice2
  Depends: libindicate-qt1
  Depends: liblastfm0
  Depends: libmtp9
  Depends: libplist1
  Depends: libprojectm2
  Depends: libqt4-dbus
  Depends: libqt4-network
  Depends: libqt4-opengl
  Depends: libqt4-sql
  Depends: libqt4-xml
  Depends: libqtcore4
  Depends: libqtgui4
  Depends: libqxt-gui0
  Depends: libstdc++6
  Depends: libtag1c2a
  Depends: libusb-0.1-4
  Depends: libusbmuxd1
  Depends: libx11-6
  Depends: libxml2
  Depends: zlib1g
  Depends: gstreamer0.10-plugins-base
  Depends: gstreamer0.10-plugins-good
  Depends: gstreamer0.10-plugins-ugly
  Depends: libqt4-sql-sqlite
  Depends: projectm-data
 |Recommends: gstreamer0.10-alsa
  Recommends: gstreamer0.10-pulseaudio

Except of libqt4 and gstreamer things everything should be on the box already. I'm here if you need someone to hold your hand. tongue


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#40 2011-12-09 08:29:50

dotism
#! Member
Registered: 2011-12-01
Posts: 94
Website

Re: A Music Management Recommendation?

This is verging on ridiculous smile I just want a music player. I wrote one using Basic in 1999 during the Napster heyday. It was easy. For some reason, this isn't smile

Offline

#41 2011-12-09 08:31:37

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

Not ridiculous at all. What do you think how many systems we have already borked? big_smile
Does Clementine work now?


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#42 2011-12-09 08:36:36

dotism
#! Member
Registered: 2011-12-01
Posts: 94
Website

Re: A Music Management Recommendation?

No, I can't get clementine's dependencies to install.

I just got angry and am now upgrading my entire system from testing. I will probably live to regret that smile Time to backup my conkys.

Offline

#43 2011-12-09 08:40:51

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,214
Website

Re: A Music Management Recommendation?

If you are on the new release, I would comment the backports repos in the sources.list prior to dist-upgrade.


Start Distrohopping here! -> Roast your ownVSIDO | LinuxCNC | AntiX | Frugalware |  <-

Offline

#44 2011-12-09 10:32:42

EnochRoot
#! Junkie
From: London, UK
Registered: 2011-10-15
Posts: 253
Website

Re: A Music Management Recommendation?

I've started using mpd for playing my tunes with Ario / glurp / gimmix for control, works really sweetly

Offline

#45 2011-12-09 10:36:56

m5
#! CrunchBanger
From: 200 years ago.
Registered: 2011-12-08
Posts: 221

Re: A Music Management Recommendation?

gmusicbrowser is great,
try decibel audio player,its light and you can enable library in preferences and doesn't have too much dependencies.has a clean interface too.


Keep digging.
Linux beginner.

Offline

#46 2011-12-09 12:23:13

Thorny
#! CrunchBanger
Registered: 2011-05-19
Posts: 113

Re: A Music Management Recommendation?

dotism wrote:

...Is there a way to simultaneously install a .deb package's dependencies when using dpkg? I am getting so tired of being denied an install due to dependencies when it seems like they could just be installed on-the-fly....

The package you want to consider for that functionality is gdebi. It will help with dependencies while installing a "local" .deb.

Offline

#47 2011-12-09 12:39:13

kowloonboy
#! Junkie
Registered: 2011-10-13
Posts: 443

Re: A Music Management Recommendation?

@dotism

Consider upgrading SID, so you don't need to keep doing apt-pinning, I recommend this guide written by someone who smell like a combo of machine and bacon. lol

Last edited by kowloonboy (2011-12-09 12:40:19)


"To me, the extraordinary aspect of martial arts lies in its simplicity. The easy way is also the right way, and martial arts is nothing at all special; the closer to the true way of martial arts, the less wastage of expression there is." - Bruce Lee

Offline

#48 2011-12-09 12:59:58

ej64
#! Member
From: somewhere in Germany
Registered: 2010-09-24
Posts: 64

Re: A Music Management Recommendation?

Tell me dumb but I'm going with Amarok. To me it's the best music player. If you're running Linux on a fat machine with good net bandwidth the qt-packages aren't much to worry about.

In my case not Amarok led me to the bad wink K-progs but Kaffeine. Having both inferior experiences with me-tv and vlc as a frontend for dvb-t tv I finally gave kaffeine a shot .. .and that was it. And digikam's really nice, too ...


Thinkpad X220 with 1.gen Samsung SSD on #! Statler XFCE (unstable repos)

Offline

#49 2011-12-09 18:09:48

BoredOOMM
#! Junkie
From: 36.0718,-119.03519
Registered: 2011-06-19
Posts: 350

Re: A Music Management Recommendation?

ej64 wrote:

Tell me dumb but I'm going with Amarok. To me it's the best music player. If you're running Linux on a fat machine with good net bandwidth the qt-packages aren't much to worry about.

In my case not Amarok led me to the bad wink K-progs but Kaffeine. Having both inferior experiences with me-tv and vlc as a frontend for dvb-t tv I finally gave kaffeine a shot .. .and that was it. And digikam's really nice, too ...

You will be back in two weeks after the bugs.

You can make Gmusicbrowser look like Amarok and not have all the bloat installed.


Congratulations, you've figured out the sound of one hand clapping...

Offline

Be excellent to each other!

#50 2011-12-09 18:52:29

ivanovnegro
Ivan #000000
Registered: 2011-06-02
Posts: 5,269

Re: A Music Management Recommendation?

What about MOC? It is a real #!'ers app or MPD with a fully featured ncurses interface like ncmpcpp, if you try it once, you will be addicted. smile

Offline

Board footer

Powered by FluxBB

Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.

Debian Logo