Re: upgrade fails

2019-09-24 Thread john doe
On 9/24/2019 1:41 PM, Tony van der Hoff wrote:
> On 24/09/2019 12:35, The Wanderer wrote:
>> On 2019-09-24 at 07:11, Tony van der Hoff wrote:
>>
>>> tony@tony-lx:~$ sudo apt-get upgrade
>>> [sudo] password for tony:
>>> Reading package lists... Done
>>> Building dependency tree
>>> Reading state information... Done
>>> Calculating upgrade... Done
>>> The following packages have been kept back:
>>>   linux-image-amd64
>>> 0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
>>>
>>> Can anyone tell me why, please?
>>
>> Not for certain without more information.
>>
>> The most likely answer is that to upgrade that package, apt-get would
>> have to install one or more new packages that you don't already have
>> installed; 'apt-get update' will never install or remove packages, only
>> upgrade existing ones.
>>
>> If you want to let it install new packages or remove installed packages
>> in order to complete the upgrade, run 'apt-get dist-upgrade' instead.
>>
>> Or you might try using 'apt upgrade' or similar; I don't use the 'apt'
>> command myself, so I'm not familiar with exactly how things work on that
>> side of the fence, but I understand that the behavior is different and
>> it may match more closely to what you're expecting.
>>
>

You can also install the package manually:

$ apt-get install linux-image-amd64

--
John Doe



Re: upgrade fails

2019-09-24 Thread Tony van der Hoff
On 24/09/2019 12:35, The Wanderer wrote:
> On 2019-09-24 at 07:11, Tony van der Hoff wrote:
> 
>> tony@tony-lx:~$ sudo apt-get upgrade
>> [sudo] password for tony:
>> Reading package lists... Done
>> Building dependency tree
>> Reading state information... Done
>> Calculating upgrade... Done
>> The following packages have been kept back:
>>   linux-image-amd64
>> 0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
>>
>> Can anyone tell me why, please?
> 
> Not for certain without more information.
> 
> The most likely answer is that to upgrade that package, apt-get would
> have to install one or more new packages that you don't already have
> installed; 'apt-get update' will never install or remove packages, only
> upgrade existing ones.
> 
> If you want to let it install new packages or remove installed packages
> in order to complete the upgrade, run 'apt-get dist-upgrade' instead.
> 
> Or you might try using 'apt upgrade' or similar; I don't use the 'apt'
> command myself, so I'm not familiar with exactly how things work on that
> side of the fence, but I understand that the behavior is different and
> it may match more closely to what you're expecting.
> 

Thanks, Wanderer, dist-upgrade worked fine. Embarrassed to admit I
forgot all about that command. Must be having senior moments :(

-- 
Tony van der Hoff| mailto:t...@vanderhoff.org
Buckinghamshire, England |



Re: upgrade fails

2019-09-24 Thread The Wanderer
On 2019-09-24 at 07:11, Tony van der Hoff wrote:

> tony@tony-lx:~$ sudo apt-get upgrade
> [sudo] password for tony:
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Calculating upgrade... Done
> The following packages have been kept back:
>   linux-image-amd64
> 0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
> 
> Can anyone tell me why, please?

Not for certain without more information.

The most likely answer is that to upgrade that package, apt-get would
have to install one or more new packages that you don't already have
installed; 'apt-get update' will never install or remove packages, only
upgrade existing ones.

If you want to let it install new packages or remove installed packages
in order to complete the upgrade, run 'apt-get dist-upgrade' instead.

Or you might try using 'apt upgrade' or similar; I don't use the 'apt'
command myself, so I'm not familiar with exactly how things work on that
side of the fence, but I understand that the behavior is different and
it may match more closely to what you're expecting.

-- 
   The Wanderer

The reasonable man adapts himself to the world; the unreasonable one
persists in trying to adapt the world to himself. Therefore all
progress depends on the unreasonable man. -- George Bernard Shaw



signature.asc
Description: OpenPGP digital signature


Re: Upgrade fails

2016-09-29 Thread Vincent Lefevre
On 2016-09-29 11:41:59 +0200, Tony van der Hoff wrote:
> On 29/09/16 11:21, Vincent Lefevre wrote:
> > On 2016-09-29 11:13:17 +0200, Tony van der Hoff wrote:
> >> Trying apt-get upgrade:
> >>
> >> 11:10:17 root@tony-fr:~# apt-get upgrade
> >> Reading package lists... Done
> >> Building dependency tree
> >> Reading state information... Done
> >> Calculating upgrade... Done
> >> The following packages have been kept back:
> >>   db5.1-util phonon-backend-vlc vlc vlc-nox vlc-plugin-notify
> >> vlc-plugin-pulse
> >> 0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.
> >>
> >> I have no packages (deliberately) held back., so how do I get out of
> >> this situation?
> > 
> > Wait for the dependencies to be satisfied?
> > 
> Might be a long wait: I'm running Jessie!

Note that the above message is probably not possible with a pure
Debian/stable installation (in particular, no multimedia repo).

On 2016-09-29 12:07:47 +0200, Tony van der Hoff wrote:
> On 29/09/16 12:03, Floris wrote:
> > apt-get purge vlc-data
> 
> No!! I don't want to lose this lot:
> 
> The following packages will be REMOVED:
[...]

In case you want to get rid of the packages from the multimedia repo,
an alternate solution could be:

  apt-get install -t stable vlc-data/stable [...]

with all packages that need to be downgraded. But note that
downgrading packages is not officially supported and may fail or
yield an inconsistent configuration state.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



[SOLVED] Re: Upgrade fails

2016-09-29 Thread Tony van der Hoff
On 29/09/16 12:51, Floris wrote:
> Op Thu, 29 Sep 2016 12:44:10 +0200 schreef Tony van der Hoff
> :
> 
>> On 29/09/16 12:11, Floris wrote:
>>> Op Thu, 29 Sep 2016 12:07:47 +0200 schreef Tony van der Hoff
>>> :
>>>
>>>
>>> re-enable the deb-multimedia repo
>>> (don't forget to run apt-get update)
>>> and try to update your system with
>>> apt-get dselect-upgrade
>>>
>>> Floris
>>>
>>
>> Yay, that's fixed it! Thanks, Floris!
>>
>> Do I now comment out multimedia again?
>>
> 
> My experience is that deb-multimedia updates their packages as soon as
> possible
> and fits great in Debian. So you can leave the repo enabled.
> 
> Floris
> 
Thanks Floris, and Vincent, Kushal, Nicholas who also helped.


-- 
Tony van der Hoff  | mailto:t...@vanderhoff.org
Ariège, France |



Re: Upgrade fails

2016-09-29 Thread Floris
Op Thu, 29 Sep 2016 12:44:10 +0200 schreef Tony van der Hoff  
:



On 29/09/16 12:11, Floris wrote:

Op Thu, 29 Sep 2016 12:07:47 +0200 schreef Tony van der Hoff
:


re-enable the deb-multimedia repo
(don't forget to run apt-get update)
and try to update your system with
apt-get dselect-upgrade

Floris



Yay, that's fixed it! Thanks, Floris!

Do I now comment out multimedia again?



My experience is that deb-multimedia updates their packages as soon as  
possible

and fits great in Debian. So you can leave the repo enabled.

Floris



Re: Upgrade fails

2016-09-29 Thread Tony van der Hoff
On 29/09/16 12:11, Floris wrote:
> Op Thu, 29 Sep 2016 12:07:47 +0200 schreef Tony van der Hoff
> :
> 
> 
> re-enable the deb-multimedia repo
> (don't forget to run apt-get update)
> and try to update your system with
> apt-get dselect-upgrade
> 
> Floris
> 

Yay, that's fixed it! Thanks, Floris!

Do I now comment out multimedia again?

-- 
Tony van der Hoff  | mailto:t...@vanderhoff.org
Ariège, France |



Re: Upgrade fails

2016-09-29 Thread Floris
Op Thu, 29 Sep 2016 12:07:47 +0200 schreef Tony van der Hoff  
:



On 29/09/16 12:03, Floris wrote:

apt-get purge vlc-data


No!! I don't want to lose this lot:

The following packages will be REMOVED:
  akregator* apper* ark* browser-plugin-vlc* dolphin* dragonplayer*
gwenview* jovie* juk* k3b* k3b-i18n* k4dirstat* kaccessible*
kaddressbook* kate* kblocks* kcalc* kde-baseapps* kde-baseapps-bin*
kde-plasma-desktop* kde-runtime* kde-standard* kde-style-oxygen*
  kde-window-manager* kde-workspace* kde-workspace-bin*
kdeaccessibility* kdepasswd* kdepim-kresources* kdepim-runtime*
kdeplasma-addons* kdesudo* kdevelop* kdewebdev* kdiff3* kdirstat* kdm*
kfilereplace* kfind* kgoldrunner* khelpcenter4* kimagemapeditor*
kinfocenter*
  klinkstatus* klipper* kmag* kmahjongg* kmail* kmenuedit* kmix*
kmousetool* kmouth* kmplayer* knotes* kommander* konq-plugins*
konqueror* konqueror-nsplugins* konsole* kopete* korganizer* kpat*
kscreen* kscreensaver* kscreensaver-xsavers* ksnapshot* ksysguard* kuser*
  kwalletmanager* kwrite* libakonadi-calendar4* libakonadi-contact4*
libcalendarsupport4* libeventviews4* libincidenceeditorsng4* libk3b6*
libk3b6-extracodecs* libkateinterfaces4* libkcddb4* libkcompactdisc4*
libkdepim4* libkdepimdbusinterfaces4* libkonq-common*
  libkonq5abi1* libkopete4* libksieveui4* libmailcommon4*
libmailimporter4* libmarblewidget19* libmessagecomposer4*
libmessagecore4* libmessagelist4* libmessageviewer4* libnoteshared4*
libokularcore5* libpimcommon4* libreoffice-kde* libsmokekdecore4-3*
  libsmokekdeui4-3* libsmokekfile3* libsmokekhtml3* libsmokekio3*
libsmokeknewstuff2-3* libsmokeknewstuff3-3* libsmokekparts3*
libsmokektexteditor3* libsmokekutils3* libsmokeplasma3*
libtemplateparser4* libvlc5* libvlccore5* marble-plugins* okteta*
okular* phonon*
  phonon-backend-vlc* plasma-dataengines-workspace* plasma-desktop*
plasma-runners-addons* plasma-scriptengine-python*
plasma-scriptengine-ruby* plasma-scriptengine-superkaramba*
plasma-scriptengines* plasma-wallpapers-addons* plasma-widget-folderview*
  plasma-widget-lancelot* plasma-widgets-addons*
plasma-widgets-workspace* polkit-kde-1* python-kde4* python3-pykde4*
qapt-batch* ruby-kde4* ruby-plasma* software-properties-kde* sweeper*
systemsettings* task-kde-desktop* vlc* vlc-data* vlc-nox*  
vlc-plugin-notify*

  vlc-plugin-pulse*




re-enable the deb-multimedia repo
(don't forget to run apt-get update)
and try to update your system with
apt-get dselect-upgrade

Floris



Re: Upgrade fails

2016-09-29 Thread Tony van der Hoff
On 29/09/16 12:03, Floris wrote:
> apt-get purge vlc-data

No!! I don't want to lose this lot:

The following packages will be REMOVED:
  akregator* apper* ark* browser-plugin-vlc* dolphin* dragonplayer*
gwenview* jovie* juk* k3b* k3b-i18n* k4dirstat* kaccessible*
kaddressbook* kate* kblocks* kcalc* kde-baseapps* kde-baseapps-bin*
kde-plasma-desktop* kde-runtime* kde-standard* kde-style-oxygen*
  kde-window-manager* kde-workspace* kde-workspace-bin*
kdeaccessibility* kdepasswd* kdepim-kresources* kdepim-runtime*
kdeplasma-addons* kdesudo* kdevelop* kdewebdev* kdiff3* kdirstat* kdm*
kfilereplace* kfind* kgoldrunner* khelpcenter4* kimagemapeditor*
kinfocenter*
  klinkstatus* klipper* kmag* kmahjongg* kmail* kmenuedit* kmix*
kmousetool* kmouth* kmplayer* knotes* kommander* konq-plugins*
konqueror* konqueror-nsplugins* konsole* kopete* korganizer* kpat*
kscreen* kscreensaver* kscreensaver-xsavers* ksnapshot* ksysguard* kuser*
  kwalletmanager* kwrite* libakonadi-calendar4* libakonadi-contact4*
libcalendarsupport4* libeventviews4* libincidenceeditorsng4* libk3b6*
libk3b6-extracodecs* libkateinterfaces4* libkcddb4* libkcompactdisc4*
libkdepim4* libkdepimdbusinterfaces4* libkonq-common*
  libkonq5abi1* libkopete4* libksieveui4* libmailcommon4*
libmailimporter4* libmarblewidget19* libmessagecomposer4*
libmessagecore4* libmessagelist4* libmessageviewer4* libnoteshared4*
libokularcore5* libpimcommon4* libreoffice-kde* libsmokekdecore4-3*
  libsmokekdeui4-3* libsmokekfile3* libsmokekhtml3* libsmokekio3*
libsmokeknewstuff2-3* libsmokeknewstuff3-3* libsmokekparts3*
libsmokektexteditor3* libsmokekutils3* libsmokeplasma3*
libtemplateparser4* libvlc5* libvlccore5* marble-plugins* okteta*
okular* phonon*
  phonon-backend-vlc* plasma-dataengines-workspace* plasma-desktop*
plasma-runners-addons* plasma-scriptengine-python*
plasma-scriptengine-ruby* plasma-scriptengine-superkaramba*
plasma-scriptengines* plasma-wallpapers-addons* plasma-widget-folderview*
  plasma-widget-lancelot* plasma-widgets-addons*
plasma-widgets-workspace* polkit-kde-1* python-kde4* python3-pykde4*
qapt-batch* ruby-kde4* ruby-plasma* software-properties-kde* sweeper*
systemsettings* task-kde-desktop* vlc* vlc-data* vlc-nox* vlc-plugin-notify*
  vlc-plugin-pulse*


-- 
Tony van der Hoff  | mailto:t...@vanderhoff.org
Ariège, France |



Re: Upgrade fails

2016-09-29 Thread Floris
Op Thu, 29 Sep 2016 11:58:57 +0200 schreef Tony van der Hoff  
:



On 29/09/16 11:48, Floris wrote:




The following packages have unmet dependencies:
 libvlccore8 : Depends: vlc-data (= 2.2.4-1~deb8u1) but 1:2.0.6-dmo3 is
to be installed

Bah!



you have enabled the Deb Multimedia repo. Which is not part of Debian.
Now you have two options:
- remove the repo and use the real Debian packages
- wait for a newer version in the multimedia repo



Nope, it's commented out:

deb ftp://ftp.uk.debian.org/debian/ jessie main non-free contrib
deb-src ftp://ftp.uk.debian.org/debian/ jessie main non-free contrib

deb http://security.debian.org/ jessie/updates main non-free contrib
#deb-src http://ftp.uk.debian.org/debian/ jessie/updates main non-free
contrib

# jessie-updates, previously known as 'volatile'
deb ftp://ftp.uk.debian.org/debian/ jessie-updates main non-free contrib
#deb-src ftp://ftp.uk.debian.org/debian/ jessie-updates main non-free
contrib

# jessie-backports
#deb http://ftp.uk.debian.org/debian/ jessie-backports main non-free  
contrib


# multimedia
# deb http://www.deb-multimedia.org jessie main non-free




try to purge vlc-data:

# apt-get purge vlc-data

and reinstall vlc (if you need it)

Floris



Re: Upgrade fails

2016-09-29 Thread Nicolas George
L'octidi 8 vendémiaire, an CCXXV, Tony van der Hoff a écrit :
> Nope, it's commented out:

But maybe you still have installed packages from it.


signature.asc
Description: Digital signature


Re: Upgrade fails

2016-09-29 Thread Tony van der Hoff
On 29/09/16 11:48, Floris wrote:
> 
>>
>> The following packages have unmet dependencies:
>>  libvlccore8 : Depends: vlc-data (= 2.2.4-1~deb8u1) but 1:2.0.6-dmo3 is
>> to be installed
>>
>> Bah!
>>
> 
> you have enabled the Deb Multimedia repo. Which is not part of Debian.
> Now you have two options:
> - remove the repo and use the real Debian packages
> - wait for a newer version in the multimedia repo
> 

Nope, it's commented out:

deb ftp://ftp.uk.debian.org/debian/ jessie main non-free contrib
deb-src ftp://ftp.uk.debian.org/debian/ jessie main non-free contrib

deb http://security.debian.org/ jessie/updates main non-free contrib
#deb-src http://ftp.uk.debian.org/debian/ jessie/updates main non-free
contrib

# jessie-updates, previously known as 'volatile'
deb ftp://ftp.uk.debian.org/debian/ jessie-updates main non-free contrib
#deb-src ftp://ftp.uk.debian.org/debian/ jessie-updates main non-free
contrib

# jessie-backports
#deb http://ftp.uk.debian.org/debian/ jessie-backports main non-free contrib

# multimedia
# deb http://www.deb-multimedia.org jessie main non-free


-- 
Tony van der Hoff  | mailto:t...@vanderhoff.org
Ariège, France |



Re: Upgrade fails

2016-09-29 Thread Floris




The following packages have unmet dependencies:
 libvlccore8 : Depends: vlc-data (= 2.2.4-1~deb8u1) but 1:2.0.6-dmo3 is
to be installed

Bah!



you have enabled the Deb Multimedia repo. Which is not part of Debian.
Now you have two options:
- remove the repo and use the real Debian packages
- wait for a newer version in the multimedia repo



Re: Upgrade fails

2016-09-29 Thread Tony van der Hoff
On 29/09/16 11:21, Vincent Lefevre wrote:
> On 2016-09-29 11:13:17 +0200, Tony van der Hoff wrote:
>> Trying apt-get upgrade:
>>
>> 11:10:17 root@tony-fr:~# apt-get upgrade
>> Reading package lists... Done
>> Building dependency tree
>> Reading state information... Done
>> Calculating upgrade... Done
>> The following packages have been kept back:
>>   db5.1-util phonon-backend-vlc vlc vlc-nox vlc-plugin-notify
>> vlc-plugin-pulse
>> 0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.
>>
>> I have no packages (deliberately) held back., so how do I get out of
>> this situation?
> 
> Wait for the dependencies to be satisfied?
> 
Might be a long wait: I'm running Jessie!

> You can have more information with an explicit install of some
> given package, e.g.
> 
> $ apt install db5.1-util -s
> 
> You should get an error message saying why the package cannot be
> upgraded.
> 

Hm, db5.1-util installed without a problem.

But this:

 phonon-backend-vlc : Depends: libvlccore8 (>= 2.0.0) but it is not
going to be installed
 vlc : Depends: libvlccore8 (>= 2.2.0) but it is not going to be installed
   Recommends: vlc-plugin-samba (= 2.2.4-1~deb8u1) but it is not
going to be installed
 vlc-nox : Depends: libvlccore8 (>= 2.2.0) but it is not going to be
installed
 vlc-plugin-notify : Depends: libvlccore8 (>= 2.2.0) but it is not going
to be installed
 vlc-plugin-pulse : Depends: vlc-data (= 2.2.4-1~deb8u1) but
1:2.0.6-dmo3 is to be installed
E: Unable to correct problems, you have held broken packages.

I tried, without success, to install libvlccore8:

The following packages have unmet dependencies:
 libvlccore8 : Depends: vlc-data (= 2.2.4-1~deb8u1) but 1:2.0.6-dmo3 is
to be installed

Bah!

-- 
Tony van der Hoff  | mailto:t...@vanderhoff.org
Ariège, France |



Re: Upgrade fails

2016-09-29 Thread Kushal Kumaran
Tony van der Hoff  writes:

> Trying apt-get upgrade:
>
> 11:10:17 root@tony-fr:~# apt-get upgrade
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Calculating upgrade... Done
> The following packages have been kept back:
>   db5.1-util phonon-backend-vlc vlc vlc-nox vlc-plugin-notify
> vlc-plugin-pulse
> 0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.
>
> I have no packages (deliberately) held back., so how do I get out of
> this situation?

Run apt-get dist-upgrade, review the list of packages it is planning to
install/uninstall, and if everything looks ok, let it go ahead and do
it.

The apt-get upgrade command will not execute upgrades that require it to
install or uninstall packages.

-- 
regards,
kushal



Re: Upgrade fails

2016-09-29 Thread Vincent Lefevre
On 2016-09-29 11:13:17 +0200, Tony van der Hoff wrote:
> Trying apt-get upgrade:
> 
> 11:10:17 root@tony-fr:~# apt-get upgrade
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Calculating upgrade... Done
> The following packages have been kept back:
>   db5.1-util phonon-backend-vlc vlc vlc-nox vlc-plugin-notify
> vlc-plugin-pulse
> 0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.
> 
> I have no packages (deliberately) held back., so how do I get out of
> this situation?

Wait for the dependencies to be satisfied?

You can have more information with an explicit install of some
given package, e.g.

$ apt install db5.1-util -s

You should get an error message saying why the package cannot be
upgraded.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Re: upgrade fails with X's

2006-03-18 Thread Andrew Sackville-West
On Fri, 17 Mar 2006 21:09:46 -0600
Kent West [EMAIL PROTECTED] wrote:

 Pelusa Vali wrote:
 

  and also this:
 ln -s /dev/null /etc/X11/X

well this line means that /etc/X11/X now points to /dev/null which is not 
executable and also is not the X server. that should be something like

ln -s /usr/bin/X11/Xorg /etc/X11/X

the sym link just points to which executable to use. pointing it to /dev/null 
pretty much guarantees that it won't work, unless there's something I'm missing.

A


pgpiGkNhHQqfT.pgp
Description: PGP signature


Re: upgrade fails with X's

2006-03-17 Thread Kent West
Pelusa Vali wrote:

i changed my pc and tried upgrade mi debian sarge to testing version using 
apt-get dist-upgrade, everything seems to be ok, but now, i cann't use gnome, 
when installing upgrade system says there's a problem with genrtc and that 
couldn't set gnome because of libgnome2-perl was missing.  so i installed it

You installed what? libgnome2-perl? And how did you install it?

 and tried dpkg --configure -a and later dpkg-reconfigure xserver-xfree86 but 
 system says /etc/X11/X is not executable.

This sounds like not all the packages necessary for X were
installed/configured. Do you know get any errors from apt-get
dist-upgrade, and if so, what are they?

  so i tried putting in /etc/inittab this:
id:3:initdefault

This is meaningless, unless you've changed runlevel 3 away from the
default. In a default Debian installation, runlevels 2 through 5 are
identical, which is different than some other distros (which often
confuses converts from those distros).

 and also this:
ln -s /dev/null /etc/X11/X
readlink /etc/X11/X | md5sum  /var/lib/xfree86/x.md5sum
  

I have no idea why you would do this. Granted, I'm not a nix-head, but
this makes no sense to me.

dpkg-reconfigure xserver-xfree86
but everything fails, always system shows /etc/X11/X is not executable.
  

Exact text of errors please. But actually, I'd rather have the text of
the apt-get command above, rather than this dpkg-reconfigure command.
You might also try using aptitude rather than apt-get.

-- 
Kent


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]