LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 01-26-2014, 09:11 PM   #16
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176

See post #10 where Mr. Widget advised me it's already installed-

Should I go ahead and remove the fglrx-driver?
 
Old 01-26-2014, 09:18 PM   #17
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
I read post 10 and that is why I answered my own question so you could see what the problem is. fglrx-driver is installed but it is not configured, it is not configured because it is missing a dependency. Using
Code:
apt-get -f install
was suggested to attempt to force the installation of the dependency but that didn't work so my suggestion is
Code:
apt-get install glx-alternative-fglrx fglrx-driver
in order to install and configure the driver.
 
Old 01-26-2014, 09:38 PM   #18
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Code:
apt-get install glx-alternative-fglrx fglrx-driver
Reading package list... Done
Building dependency tree
Reading state information... Done
fglrx-driver is already the newest version
you might want to run apt-get -f install to correct these:
The following packages have unmet depencencies:
fglrx-driver : Depends: libfglrx (=1:12-6+point-3) but it is not installable
        Reccommends: fglrx-modules-dkms (=1:12-6+point-3) but is not installable

stallable   Reccommends: libg11-fglrx-glx-i386 but is not installable
            Recommends: fglrx-glx-ia32 but is not installable
            Reccommends: fglrx-atieventsd but is not installable
glx-alternative-fglrx : Depends glx-diversions (=0.2.2) but is not going to  (can't see the rest)
                        Depends: glx-alternative-mesa but is not going to be installed
E: Unment dependencies. Try 'apt-get -f install' with no packages (or specify as a solution)
root@me:/home/cat
This is what I'm looking through for the moment-

What is your take on this?
 
Old 01-26-2014, 10:37 PM   #19
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Those fglrx packages are not part of Debian's main repository, since they are not free software. According to the sources.list you have posted in the first post the non-free repository is not enabled on your system. You will have to do that first.
 
1 members found this post helpful.
Old 01-26-2014, 11:25 PM   #20
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by TobiSGD View Post
Those fglrx packages are not part of Debian's main repository, since they are not free software. According to the sources.list you have posted in the first post the non-free repository is not enabled on your system. You will have to do that first.

Just add non-free to end of each of the repos in my sources.list?
 
Old 01-26-2014, 11:29 PM   #21
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
Quote:
Originally Posted by Ztcoracat View Post
Just add non-free to end of each of the repos in my sources.list?
contrib and non-free
 
1 members found this post helpful.
Old 01-26-2014, 11:50 PM   #22
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by k3lt01 View Post
contrib and non-free
Done. I added contrib and non-free to the end of each argument line in my sources.list-

Code:
deb http://security.debian.org/ wheezy/updates main contrib non free
deb-src http://security.debian.org/ wheezy/updates main contrib non free
deb http://ftp.us.debian.org/debian wheezy main contrib non free
deb http://ftp.us.debian.org/debian wheezy-backports main contrib non free
deb http://http.debian.net/debian/ wheezy main contrib non free
What should I proceed with now?
 
Old 01-27-2014, 12:00 AM   #23
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
Quote:
Originally Posted by Ztcoracat View Post
What should I proceed with now?
Install the packages.
Code:
apt-get install glx-alternative-fglrx fglrx-driver
You could also try
Code:
apt-get -f install
if the above does not work.

Last edited by k3lt01; 01-27-2014 at 12:02 AM.
 
Old 01-27-2014, 12:22 AM   #24
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by k3lt01 View Post
Install the packages.
Code:
apt-get install glx-alternative-fglrx fglrx-driver
You could also try
Code:
apt-get -f install
if the above does not work.
Running the first cmd you posted for me I have the exact same output as in post #18:-

And running apt-get -f install I have the same output again [Y/n]?

Code:
Reading package list... Done
Building dependency tree
Reading state information ... Done
The following packages will be REMOVED:
fglrx-driver
0 upgraded, 0 newly installed, 1 to remove and 14 not upgraded.
1 not fully installed or removed.
After this operation 24.9 MB disk space will be freed.
Do you want to continue [Y/n]?

Hmmm....
Puzzled at the moment--

I'm not sure what to try, k3lt01.

Thanks for staying with me on this-
 
Old 01-27-2014, 12:38 AM   #25
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
did you
Code:
apt-get update
after changing your sources.list? if you didn't then do it then apt-get install etc etc etc.
 
Old 01-27-2014, 12:47 AM   #26
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by k3lt01 View Post
did you
Code:
apt-get update
after changing your sources.list? if you didn't then do it then apt-get install etc etc etc.
Update complete-

Retried the cmd's you posted in post #24 and still have the same results--

Code:
Do you want to continue [Y/n]?
I'll have to shut down soon it's getting late.
 
Old 01-27-2014, 12:54 AM   #27
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
Just say yes and let it remove fglrx-driver. My gut feeling is something is wrong that we haven't yet realised.
 
Old 01-27-2014, 01:02 AM   #28
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Ok choose yes-

Code:
(Reading database... 106531 files and directories currently installed.
Removing fglrx-driver ...
Processing triggers for man-db
root@myname:/home/me#
Don't want to perform a hard shut down so I'm planning on running:
Code:
shutdown -h now
You agree?
 
Old 01-27-2014, 01:07 AM   #29
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
I have no knowledge of what the -h means so I can't answer that but yes if you want to shutdown and you know what the -h does then shutdown with that command.
 
Old 01-27-2014, 01:09 AM   #30
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484

Original Poster
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by k3lt01 View Post
I have no knowledge of what the -h means so I can't answer that but yes if you want to shutdown and you know what the -h does then shutdown with that command.
-h is for hault-

Be back tomorrow.
Thanks for your help!
 
  


Reply



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
Fixing recursive fault screen umbloaded Linux - General 2 06-18-2013 03:39 AM
Wheezy to Testing: About my sources.list aquaboot Debian 2 05-25-2013 02:21 PM
wheezy updates in sources.list rng Debian 12 02-25-2013 10:26 AM
Fixing recursive fault but reboot is needed! vkmgeek Programming 2 01-02-2008 07:03 PM
Need Recommendation for Debian Etch sources.list ( /etc/apt/sources.list ) forgox Debian 6 05-05-2007 01:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 07:46 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