#1 Le 17/12/2017, à 12:01
- degolarson
Virtualbox Installation défaillante
Bonjour
Je voudrais faire tourner une machine virtuelle Windows pour utiliser des logiciels qui ne marchent pas avec mon Xubuntu 14.04 32 bits, comme skype (ne marche depuis peu qu'avec 64 b) ou inforad (petit avertisseur de radar). J'ai donc installé Virtualbox mais apparemment il y a un défaut d'installation
Synaptic me dit que VB 5.1 est installé ainsi que virtualbox dkms
mais voilà ce que j'obtiens au lancement normal
RTR3InitEx failed with rc=-1912 (rc=-1912)
The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing
'/sbin/vboxconfig'
may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.
where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user
je ne sais pas comment exécuter /sbin/vboxconfig, ni m'assurer que je n'ai pas confondu les versions OSE et PUEL
et aussi
The virtual machine 'Win10_32' has terminated unexpectedly during startup with exit code 1 (0x1).
Code d'erreur :
NS_ERROR_FAILURE (0x80004005)
Composant :
MachineWrap
Interface :
IMachine {b2547866-a0a1-4391-8b86-6952d82efaa0}
merci
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#2 Le 17/12/2017, à 12:06
- degolarson
Re : Virtualbox Installation défaillante
J'ai trouvé '/sbin/vboxconfig' et cliqué sur Exécuter, pas mieux
merci
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#3 Le 17/12/2017, à 12:08
- degolarson
Re : Virtualbox Installation défaillante
j'ai ouvert le fichier
#!/bin/sh
# $Id: postinst-common.sh 115719 2017-05-24 11:46:44Z michael $
## @file
# Oracle VM VirtualBox
# VirtualBox Linux post-installer common portions
## Copyright (C) 2015 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
## Put bits of the post-installation here which should work the same for all of
# the Linux installers. We do not use special helpers (e.g. dh_* on Debian),
# but that should not matter, as we know what those helpers actually do, and we
# have to work on those systems anyway when installed using the all
# distributions installer.
#
# We assume that all required files are in the same folder as this script
# (e.g. /opt/VirtualBox, /usr/lib/VirtualBox, the build output directory).# The below is GNU-specific. See VBox.sh for the longer Solaris/OS X version.
TARGET=`readlink -e -- "${0}"` || exit 1
MY_PATH="${TARGET%/[!/]*}"
cd "${MY_PATH}"
. "./routines.sh"START=true
while test -n "${1}"; do
case "${1}" in
--nostart)
START=
;;
*)
echo "Bad argument ${1}" >&2
exit 1
;;
esac
shift
done# Remove any traces of DKMS from previous installations.
for i in vboxhost vboxdrv vboxnetflt vboxnetadp; do
rm -rf "/var/lib/dkms/${i}"*
done# Install runlevel scripts and systemd unit files
install_init_script "${MY_PATH}/vboxdrv.sh" vboxdrv
install_init_script "${MY_PATH}/vboxballoonctrl-service.sh" vboxballoonctrl-service
install_init_script "${MY_PATH}/vboxautostart-service.sh" vboxautostart-service
install_init_script "${MY_PATH}/vboxweb-service.sh" vboxweb-servicedelrunlevel vboxdrv
addrunlevel vboxdrv
delrunlevel vboxballoonctrl-service
addrunlevel vboxballoonctrl-service
delrunlevel vboxautostart-service
addrunlevel vboxautostart-service
delrunlevel vboxweb-service
addrunlevel vboxweb-serviceln -sf "${MY_PATH}/postinst-common.sh" /sbin/vboxconfig
# Set SELinux permissions
# XXX SELinux: allow text relocation entries
if [ -x /usr/bin/chcon ]; then
chcon -t texrel_shlib_t "${MY_PATH}"/*VBox* > /dev/null 2>&1
chcon -t texrel_shlib_t "${MY_PATH}"/VBoxAuth.so \
> /dev/null 2>&1
chcon -t texrel_shlib_t "${MY_PATH}"/VirtualBox.so \
> /dev/null 2>&1
chcon -t texrel_shlib_t "${MY_PATH}"/components/VBox*.so \
> /dev/null 2>&1
chcon -t java_exec_t "${MY_PATH}"/VirtualBox > /dev/null 2>&1
chcon -t java_exec_t "${MY_PATH}"/VBoxSDL > /dev/null 2>&1
chcon -t java_exec_t "${MY_PATH}"/VBoxHeadless \
> /dev/null 2>&1
chcon -t java_exec_t "${MY_PATH}"/VBoxNetDHCP \
> /dev/null 2>&1
chcon -t java_exec_t "${MY_PATH}"/VBoxNetNAT \
> /dev/null 2>&1
chcon -t java_exec_t "${MY_PATH}"/VBoxExtPackHelperApp \
> /dev/null 2>&1
chcon -t java_exec_t "${MY_PATH}"/vboxwebsrv > /dev/null 2>&1
chcon -t bin_t "${MY_PATH}"/src/vboxhost/build_in_tmp \
> /dev/null 2>&1
chcon -t bin_t /usr/share/virtualbox/src/vboxhost/build_in_tmp \
> /dev/null 2>&1
fitest -n "${START}" &&
{
if ! "${MY_PATH}/vboxdrv.sh" setup; then
"${MY_PATH}/check_module_dependencies.sh" >&2
echo >&2
echo "There were problems setting up VirtualBox. To re-start the set-up process, run" >&2
echo " /sbin/vboxconfig" >&2
echo "as root." >&2
else
start_init_script vboxdrv
start_init_script vboxballoonctrl-service
start_init_script vboxautostart-service
start_init_script vboxweb-service
fi
}
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#4 Le 17/12/2017, à 12:46
- lynn
Re : Virtualbox Installation défaillante
Bonjour,
Il faut exécuter la commande dans un terminal
sudo /sbin/vboxconfig
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#5 Le 17/12/2017, à 15:07
- degolarson
Re : Virtualbox Installation défaillante
voilà, le problème est encore là
joel@joel-K70IJ:~$ sudo /sbin/vboxconfig
[sudo] password for joel:
Adding system startup for /etc/init.d/vboxdrv ...
/etc/rc0.d/K80vboxdrv -> ../init.d/vboxdrv
/etc/rc1.d/K80vboxdrv -> ../init.d/vboxdrv
/etc/rc6.d/K80vboxdrv -> ../init.d/vboxdrv
/etc/rc2.d/S20vboxdrv -> ../init.d/vboxdrv
/etc/rc3.d/S20vboxdrv -> ../init.d/vboxdrv
/etc/rc4.d/S20vboxdrv -> ../init.d/vboxdrv
/etc/rc5.d/S20vboxdrv -> ../init.d/vboxdrv
Adding system startup for /etc/init.d/vboxballoonctrl-service ...
/etc/rc0.d/K65vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc1.d/K65vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc6.d/K65vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc2.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc3.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc4.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc5.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
Adding system startup for /etc/init.d/vboxautostart-service ...
/etc/rc0.d/K65vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc1.d/K65vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc6.d/K65vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc2.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc3.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc4.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc5.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
Adding system startup for /etc/init.d/vboxweb-service ...
/etc/rc0.d/K65vboxweb-service -> ../init.d/vboxweb-service
/etc/rc1.d/K65vboxweb-service -> ../init.d/vboxweb-service
/etc/rc6.d/K65vboxweb-service -> ../init.d/vboxweb-service
/etc/rc2.d/S35vboxweb-service -> ../init.d/vboxweb-service
/etc/rc3.d/S35vboxweb-service -> ../init.d/vboxweb-service
/etc/rc4.d/S35vboxweb-service -> ../init.d/vboxweb-service
/etc/rc5.d/S35vboxweb-service -> ../init.d/vboxweb-service
vboxdrv.sh: Stopping VirtualBox services.
depmod: ERROR: could not open directory /lib/modules/3.13.0-133-generic: No such file or directory
depmod: FATAL: could not search modules: No such file or directory
vboxdrv.sh: Building VirtualBox kernel modules.
vboxdrv.sh: Starting VirtualBox services.
vboxdrv.sh: Starting VirtualBox services.
joel@joel-K70IJ:~$
Les noyaux Linux :
joel@joel-K70IJ:~$ dpkg -l | grep -Ei "linux-(g|h|i|lo|si|t)"
ii linux-generic 3.13.0.137.146 i386 Complete Generic Linux kernel and headers
ii linux-headers-3.13.0-135 3.13.0-135.184 all Header files related to Linux kernel version 3.13.0
ii linux-headers-3.13.0-135-generic 3.13.0-135.184 i386 Linux kernel headers for version 3.13.0 on 32 bit x86 SMP
ii linux-headers-3.13.0-137 3.13.0-137.186 all Header files related to Linux kernel version 3.13.0
ii linux-headers-3.13.0-137-generic 3.13.0-137.186 i386 Linux kernel headers for version 3.13.0 on 32 bit x86 SMP
ii linux-headers-generic 3.13.0.137.146 i386 Generic Linux kernel headers
ii linux-image-3.13.0-135-generic 3.13.0-135.184 i386 Linux kernel image for version 3.13.0 on 32 bit x86 SMP
ii linux-image-3.13.0-137-generic 3.13.0-137.186 i386 Linux kernel image for version 3.13.0 on 32 bit x86 SMP
ii linux-image-extra-3.13.0-135-generic 3.13.0-135.184 i386 Linux kernel extra modules for version 3.13.0 on 32 bit x86 SMP
ii linux-image-extra-3.13.0-137-generic 3.13.0-137.186 i386 Linux kernel extra modules for version 3.13.0 on 32 bit x86 SMP
ii linux-image-generic 3.13.0.137.146 i386 Generic Linux kernel image
ii syslinux-themes-debian 12-3ubuntu0.14.04.1 all collection of boot loaders (theme metapackage)
ii syslinux-themes-debian-wheezy 12-3ubuntu0.14.04.1 all collection of boot loaders (debian-wheezy theme)
joel@joel-K70IJ:~$
pourquoi cherche-t-il
depmod: ERROR: could not open directory /lib/modules/3.13.0-133-generic: No such file or directory
depmod: FATAL: could not search modules: No such file or directory
?
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#6 Le 17/12/2017, à 15:56
- lynn
Re : Virtualbox Installation défaillante
Tentes un
sudo depmod -a
et
sudo update-initramfs -uk all
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#7 Le 17/12/2017, à 17:02
- degolarson
Re : Virtualbox Installation défaillante
voilà
joel@joel-K70IJ:~$ sudo depmod -a
[sudo] password for joel:
joel@joel-K70IJ:~$ sudo update-initramfs -uk all
update-initramfs: Generating /boot/initrd.img-3.13.0-137-generic
update-initramfs: Generating /boot/initrd.img-3.13.0-135-generic
joel@joel-K70IJ:~$
toujours le même message d'échec
merci
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#8 Le 17/12/2017, à 17:15
- lynn
Re : Virtualbox Installation défaillante
Essaies de réinstaller le noyau concerné... Il a dû y avoir une coquille lors de la suppression de celui-ci.
sudo apt-get install linux-headers-3.13.0-133-generic linux-image-3.13.0-133-generic
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#9 Le 17/12/2017, à 21:55
- degolarson
Re : Virtualbox Installation défaillante
voilà, toujours problème
joel@joel-K70IJ:~$ sudo apt-get install linux-headers-3.13.0-133-generic linux-image-3.13.0-133-generic
[sudo] password for joel:
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Les paquets supplémentaires suivants seront installés :
linux-headers-3.13.0-133
Paquets suggérés :
fdutils linux-doc-3.13.0 linux-source-3.13.0 linux-tools
Les NOUVEAUX paquets suivants seront installés :
linux-headers-3.13.0-133 linux-headers-3.13.0-133-generic
linux-image-3.13.0-133-generic
0 mis à jour, 3 nouvellement installés, 0 à enlever et 6 non mis à jour.
Il est nécessaire de prendre 24,6 Mo dans les archives.
Après cette opération, 110 Mo d'espace disque supplémentaires seront utilisés.
Souhaitez-vous continuer ? [O/n]
ATTENTION : les paquets suivants n'ont pas été authentifiés.
linux-image-3.13.0-133-generic linux-headers-3.13.0-133
linux-headers-3.13.0-133-generic
Faut-il installer ces paquets sans vérification ? [o/N]
E: Certains paquets n'ont pas pu être authentifiés
joel@joel-K70IJ:~$
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#10 Le 18/12/2017, à 17:58
- lynn
Re : Virtualbox Installation défaillante
Essaies d'installer les derniers noyaux disponibles pour ta distribution ( 14.04 )
sudo apt-get install -y linux-generic-lts-xenial linux-headers-generic-lts-xenial linux-image-generic-lts-xenial
Redémarre et postes le retour de
uname -a
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#11 Le 18/12/2017, à 20:21
- degolarson
Re : Virtualbox Installation défaillante
voilà
joel@joel-K70IJ:~$ uname -a
Linux joel-K70IJ 4.4.0-104-generic #127~14.04.1-Ubuntu SMP Mon Dec 11 12:44:57 UTC 2017 i686 i686 i686 GNU/Linux
joel@joel-K70IJ:~$
même message
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#12 Le 18/12/2017, à 20:47
- lynn
Re : Virtualbox Installation défaillante
Peux-tu poster les retours de
sudo apt update && sudo apt -y full-upgrade
sed -e '/^$/d' -e '/#/d' /etc/apt/sources.list
lsb_release -a
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#13 Le 18/12/2017, à 21:53
- degolarson
Re : Virtualbox Installation défaillante
Voilà
joel@joel-K70IJ:~$ uname -a
Linux joel-K70IJ 4.4.0-104-generic #127~14.04.1-Ubuntu SMP Mon Dec 11 12:44:57 UTC 2017 i686 i686 i686 GNU/Linux
joel@joel-K70IJ:~$ sudo apt update && sudo apt -y full-upgrade
[sudo] password for joel:
Ign http://fr.archive.ubuntu.com trusty InRelease
Ign http://liveusb.info all InRelease
Atteint http://fr.archive.ubuntu.com trusty-updates InRelease
Atteint http://security.ubuntu.com trusty-security InRelease
Atteint http://liveusb.info all Release.gpg
Ign http://ppa.launchpad.net trusty InRelease
Atteint http://liveusb.info all Release
Ign http://download.opensuse.org InRelease
Ign http://extras.ubuntu.com trusty InRelease
Atteint http://fr.archive.ubuntu.com trusty Release.gpg
Atteint http://download.opensuse.org Release.gpg
Atteint http://ppa.launchpad.net trusty InRelease
Atteint http://extras.ubuntu.com trusty Release.gpg
Atteint http://fr.archive.ubuntu.com trusty Release
Atteint http://fr.archive.ubuntu.com trusty-updates/main Sources
Atteint http://download.opensuse.org Release
Atteint http://fr.archive.ubuntu.com trusty-updates/restricted Sources
Atteint http://fr.archive.ubuntu.com trusty-updates/universe Sources
Atteint http://extras.ubuntu.com trusty Release
Atteint http://ppa.launchpad.net trusty InRelease
Atteint http://fr.archive.ubuntu.com trusty-updates/multiverse Sources
Atteint http://liveusb.info all/main i386 Packages
Atteint http://fr.archive.ubuntu.com trusty-updates/main i386 Packages
Atteint http://security.ubuntu.com trusty-security/main Sources
Atteint http://fr.archive.ubuntu.com trusty-updates/restricted i386 Packages
Ign http://doc.hausser.ch ubuntu-dha InRelease
Ign http://ppa.launchpad.net trusty InRelease
Atteint http://fr.archive.ubuntu.com trusty-updates/universe i386 Packages
Atteint http://security.ubuntu.com trusty-security/restricted Sources
Atteint http://fr.archive.ubuntu.com trusty-updates/multiverse i386 Packages
Atteint http://download.virtualbox.org trusty InRelease
Atteint http://security.ubuntu.com trusty-security/universe Sources
Atteint http://fr.archive.ubuntu.com trusty-updates/main Translation-en
Atteint http://fr.archive.ubuntu.com trusty-updates/multiverse Translation-en
Atteint http://ppa.launchpad.net trusty InRelease
Atteint http://doc.hausser.ch ubuntu-dha Release.gpg
Atteint http://security.ubuntu.com trusty-security/multiverse Sources
Atteint http://fr.archive.ubuntu.com trusty-updates/restricted Translation-en
Atteint http://fr.archive.ubuntu.com trusty-updates/universe Translation-en
Réception de : 1 http://extras.ubuntu.com trusty/main Sources [14 B]
Atteint http://fr.archive.ubuntu.com trusty/main Sources
Atteint http://doc.hausser.ch ubuntu-dha Release
Atteint http://ppa.launchpad.net trusty InRelease
Atteint http://fr.archive.ubuntu.com trusty/restricted Sources
Réception de : 2 http://extras.ubuntu.com trusty/main i386 Packages [14 B]
Ign http://liveusb.info all/main Translation-fr_FR
Atteint http://ppa.launchpad.net trusty InRelease
Ign http://liveusb.info all/main Translation-fr
Ign http://liveusb.info all/main Translation-en
Atteint http://ppa.launchpad.net trusty InRelease
Réception de : 3 http://download.opensuse.org Packages [3 055 B]
Atteint http://ppa.launchpad.net trusty InRelease
Réception de : 4 http://security.ubuntu.com trusty-security/main i386 Packages [641 kB]
Atteint http://ppa.launchpad.net trusty Release.gpg
Réception de : 5 http://download.virtualbox.org trusty/non-free i386 Packages [14 B]
Réception de : 6 http://doc.hausser.ch ubuntu-dha/trusty i386 Packages [1 960 B]
Réception de : 7 http://download.virtualbox.org trusty/contrib i386 Packages [2 207 B]
Atteint http://ppa.launchpad.net trusty Release.gpg
Réception de : 8 http://fr.archive.ubuntu.com trusty/universe Sources [6 399 kB]
Ign http://extras.ubuntu.com trusty/main Translation-fr_FR
Ign http://download.opensuse.org Translation-fr_FR
Ign http://extras.ubuntu.com trusty/main Translation-fr
Ign http://download.opensuse.org Translation-fr
Réception de : 9 http://security.ubuntu.com trusty-security/restricted i386 Packages [13,9 kB]
Ign http://extras.ubuntu.com trusty/main Translation-en
Ign http://download.opensuse.org Translation-en
Réception de : 10 http://security.ubuntu.com trusty-security/universe i386 Packages [195 kB]
Réception de : 11 http://security.ubuntu.com trusty-security/multiverse i386 Packages [4 958 B]
Réception de : 12 http://security.ubuntu.com trusty-security/main Translation-en [375 kB]
Ign http://doc.hausser.ch ubuntu-dha/trusty Translation-fr_FR
Réception de : 13 http://ppa.launchpad.net trusty/main i386 Packages [14 B]
Ign http://doc.hausser.ch ubuntu-dha/trusty Translation-fr
Ign http://doc.hausser.ch ubuntu-dha/trusty Translation-en
Réception de : 14 http://security.ubuntu.com trusty-security/multiverse Translation-en [2 564 B]
Réception de : 15 http://security.ubuntu.com trusty-security/restricted Translation-en [3 542 B]
Réception de : 16 http://security.ubuntu.com trusty-security/universe Translation-en [113 kB]
Ign http://archive.canonical.com trusty InRelease
Ign http://archive.canonical.com trusty InRelease
Atteint http://ppa.launchpad.net trusty Release
Atteint http://archive.canonical.com trusty Release.gpg
Réception de : 17 http://ppa.launchpad.net trusty/main i386 Packages [30,8 kB]
Atteint http://archive.canonical.com trusty Release.gpg
Réception de : 18 http://ppa.launchpad.net trusty/main Translation-en [14,6 kB]
Atteint http://archive.canonical.com trusty Release
Atteint http://ppa.launchpad.net trusty Release
Réception de : 19 http://fr.archive.ubuntu.com trusty/multiverse Sources [174 kB]
Réception de : 20 http://ppa.launchpad.net trusty/main i386 Packages [45,7 kB]
Atteint http://archive.canonical.com trusty Release
Réception de : 21 http://fr.archive.ubuntu.com trusty/main i386 Packages [1 348 kB]
Réception de : 22 http://ppa.launchpad.net trusty/main Translation-en [26,0 kB]
Réception de : 23 http://fr.archive.ubuntu.com trusty/restricted i386 Packages [13,4 kB]
Réception de : 24 http://fr.archive.ubuntu.com trusty/universe i386 Packages [5 866 kB]
Réception de : 25 http://ppa.launchpad.net trusty/main i386 Packages [6 217 B]
Réception de : 26 http://ppa.launchpad.net trusty/main Translation-en [1 705 B]
Réception de : 27 http://ppa.launchpad.net trusty/main Translation-en [512 B]
Réception de : 28 http://ppa.launchpad.net trusty/main i386 Packages [3 592 B]
Réception de : 29 http://archive.canonical.com trusty/partner i386 Packages [5 768 B]
Ign http://download.virtualbox.org trusty/contrib Translation-fr_FR
Réception de : 30 http://ppa.launchpad.net trusty/main Translation-en [2 130 B]
Ign http://download.virtualbox.org trusty/contrib Translation-fr
Réception de : 31 http://ppa.launchpad.net trusty/main i386 Packages [6 260 B]
Ign http://download.virtualbox.org trusty/contrib Translation-en
Réception de : 32 http://ppa.launchpad.net trusty/main Translation-en [2 781 B]
Réception de : 33 http://fr.archive.ubuntu.com trusty/multiverse i386 Packages [134 kB]
Réception de : 34 http://ppa.launchpad.net trusty/main i386 Packages [1 960 B]
Réception de : 35 http://fr.archive.ubuntu.com trusty/main Translation-fr [814 kB]
Réception de : 36 http://ppa.launchpad.net trusty/main Translation-en [2 070 B]
Ign http://download.virtualbox.org trusty/non-free Translation-fr_FR
Ign http://download.virtualbox.org trusty/non-free Translation-fr
Réception de : 37 http://fr.archive.ubuntu.com trusty/main Translation-en [762 kB]
Ign http://download.virtualbox.org trusty/non-free Translation-en
Réception de : 38 http://archive.canonical.com trusty/partner Translation-en [4 207 B]
Réception de : 39 http://archive.canonical.com trusty/partner i386 Packages [5 768 B]
Réception de : 40 http://fr.archive.ubuntu.com trusty/multiverse Translation-fr [111 kB]
Réception de : 41 http://fr.archive.ubuntu.com trusty/multiverse Translation-en [102 kB]
Réception de : 42 http://fr.archive.ubuntu.com trusty/restricted Translation-fr [3 879 B]
Réception de : 43 http://fr.archive.ubuntu.com trusty/restricted Translation-en [3 457 B]
Réception de : 44 http://fr.archive.ubuntu.com trusty/universe Translation-fr [2 942 kB]
Réception de : 45 http://ppa.launchpad.net trusty/main i386 Packages [4 464 B]
Réception de : 46 http://ppa.launchpad.net trusty/main Translation-en [2 333 B]
Réception de : 47 http://ppa.launchpad.net trusty/main i386 Packages [872 B]
Réception de : 48 http://ppa.launchpad.net trusty/main Translation-en [543 B]
Réception de : 49 http://fr.archive.ubuntu.com trusty/universe Translation-en [4 089 kB]
Réception de : 50 http://archive.canonical.com trusty/partner Translation-en [4 207 B]
Ign http://fr.archive.ubuntu.com trusty/main Translation-fr_FR
Ign http://fr.archive.ubuntu.com trusty/multiverse Translation-fr_FR
Ign http://fr.archive.ubuntu.com trusty/restricted Translation-fr_FR
Ign http://fr.archive.ubuntu.com trusty/universe Translation-fr_FR
24,3 Mo réceptionnés en 23s (1 042 ko/s)
Lecture des listes de paquets... Fait
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Calcul de la mise à jour... Fait
Les paquets suivants ont été conservés :
opencpn
Les paquets suivants seront mis à jour :
chromium-codecs-ffmpeg-extra flashplugin-installer libxml2 multisystem
python-libxml2
5 mis à jour, 0 nouvellement installés, 0 à enlever et 1 non mis à jour.
Il est nécessaire de prendre 0 o/12,3 Mo dans les archives.
Après cette opération, 16,4 ko d'espace disque supplémentaires seront utilisés.
Préconfiguration des paquets...
(Lecture de la base de données... 238969 fichiers et répertoires déjà installés.)
Préparation du dépaquetage de .../libxml2_2.9.1+dfsg1-3ubuntu4.12_i386.deb ...
Dépaquetage de libxml2:i386 (2.9.1+dfsg1-3ubuntu4.12) sur (2.9.1+dfsg1-3ubuntu4.11) ...
Préparation du dépaquetage de .../chromium-codecs-ffmpeg-extra_63.0.3239.84-0ubuntu0.14.04.1_i386.deb ...
Dépaquetage de chromium-codecs-ffmpeg-extra (63.0.3239.84-0ubuntu0.14.04.1) sur (62.0.3202.94-0ubuntu0.14.04.1215) ...
Préparation du dépaquetage de .../multisystem_1.0407_all.deb ...
Dépaquetage de multisystem (1.0407) sur (1.0405) ...
Préparation du dépaquetage de .../flashplugin-installer_28.0.0.126ubuntu0.14.04.1_i386.deb ...
Dépaquetage de flashplugin-installer (28.0.0.126ubuntu0.14.04.1) sur (27.0.0.187ubuntu0.14.04.1) ...
Préparation du dépaquetage de .../python-libxml2_2.9.1+dfsg1-3ubuntu4.12_i386.deb ...
Dépaquetage de python-libxml2 (2.9.1+dfsg1-3ubuntu4.12) sur (2.9.1+dfsg1-3ubuntu4.11) ...
Traitement des actions différées (« triggers ») pour desktop-file-utils (0.22-1ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour mime-support (3.54ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour gnome-menus (3.10.1-0ubuntu2) ...
Traitement des actions différées (« triggers ») pour menu (2.1.46ubuntu1) ...
Traitement des actions différées (« triggers ») pour update-notifier-common (0.154.1ubuntu3) ...
flashplugin-installer: downloading http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-flashplugin_20171212.1.orig.tar.gz
Installing from local file /tmp/tmp0MpnqH.gz
Flash Plugin installed.
Paramétrage de libxml2:i386 (2.9.1+dfsg1-3ubuntu4.12) ...
Paramétrage de chromium-codecs-ffmpeg-extra (63.0.3239.84-0ubuntu0.14.04.1) ...
Paramétrage de multisystem (1.0407) ...
Paramétrage de flashplugin-installer (28.0.0.126ubuntu0.14.04.1) ...
Paramétrage de python-libxml2 (2.9.1+dfsg1-3ubuntu4.12) ...
Traitement des actions différées (« triggers ») pour libc-bin (2.19-0ubuntu6.13) ...
Traitement des actions différées (« triggers ») pour menu (2.1.46ubuntu1) ...
joel@joel-K70IJ:~$ sed -e '/^$/d' -e '/#/d' /etc/apt/sources.list
deb http://fr.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://fr.archive.ubuntu.com/ubuntu/ trusty main restricted
deb http://fr.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb-src http://fr.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb http://fr.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://fr.archive.ubuntu.com/ubuntu/ trusty universe
deb http://fr.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb-src http://fr.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb http://fr.archive.ubuntu.com/ubuntu/ trusty multiverse
deb-src http://fr.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://fr.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb-src http://fr.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb-src http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse
deb http://archive.canonical.com/ubuntu trusty partner
deb http://extras.ubuntu.com/ubuntu trusty main
deb-src http://extras.ubuntu.com/ubuntu trusty main
deb http://doc.hausser.ch/debpackages ubuntu-dha trusty
deb http://liveusb.info/multisystem/depot all main
deb http://download.virtualbox.org/virtualbox/debian trusty non-free contrib
deb http://archive.canonical.com/ trusty partner
joel@joel-K70IJ:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.5 LTS
Release: 14.04
Codename: trusty
joel@joel-K70IJ:~$
même message
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#14 Le 19/12/2017, à 17:22
- lynn
Re : Virtualbox Installation défaillante
Postes le retour de cette commande
ls /var/lib/initramfs-tools/
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#15 Le 19/12/2017, à 17:24
- degolarson
Re : Virtualbox Installation défaillante
voilà
joel@joel-K70IJ:~$ ls /var/lib/initramfs-tools/
3.13.0-135-generic 3.13.0-137-generic 4.4.0-104-generic
joel@joel-K70IJ:~$
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#16 Le 19/12/2017, à 18:07
- lynn
Re : Virtualbox Installation défaillante
ls /lib/modules
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#17 Le 19/12/2017, à 18:22
- degolarson
Re : Virtualbox Installation défaillante
joel@joel-K70IJ:~$ ls /lib/modules
3.13.0-135-generic 3.13.0-137-generic 4.4.0-104-generic
joel@joel-K70IJ:~$
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#18 Le 19/12/2017, à 18:39
- lynn
Re : Virtualbox Installation défaillante
Retours ( dans des blocs séparés, c'est plus lisible )
ls /boot
sudo update-grub
sudo apt install --reinstall virtualbox-5.2
sudo /sbin/vboxconfig
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#19 Le 19/12/2017, à 19:48
- degolarson
Re : Virtualbox Installation défaillante
joel@joel-K70IJ:~$ ls /boot
abi-3.13.0-135-generic memtest86+.bin
abi-3.13.0-137-generic memtest86+.elf
abi-4.4.0-104-generic memtest86+_multiboot.bin
config-3.13.0-135-generic plpbt
config-3.13.0-137-generic sbootmgr.dsk
config-4.4.0-104-generic System.map-3.13.0-135-generic
extlinux System.map-3.13.0-137-generic
grub System.map-4.4.0-104-generic
initrd.img-3.13.0-135-generic vmlinuz-3.13.0-135-generic
initrd.img-3.13.0-137-generic vmlinuz-3.13.0-137-generic
initrd.img-4.4.0-104-generic vmlinuz-4.4.0-104-generic
lost+found
joel@joel-K70IJ:~$
joel@joel-K70IJ:~$ sudo update-grub
[sudo] password for joel:
Création du fichier de configuration GRUB…
Attention : Définir GRUB_TIMEOUT à une valeur non nulle si GRUB_HIDDEN_TIMEOUT est définie n’est plus possible.
Image Linux trouvée : /boot/vmlinuz-4.4.0-104-generic
Image mémoire initiale trouvée : /boot/initrd.img-4.4.0-104-generic
Image Linux trouvée : /boot/vmlinuz-3.13.0-137-generic
Image mémoire initiale trouvée : /boot/initrd.img-3.13.0-137-generic
Image Linux trouvée : /boot/vmlinuz-3.13.0-135-generic
Image mémoire initiale trouvée : /boot/initrd.img-3.13.0-135-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
fait
joel@joel-K70IJ:~$
joel@joel-K70IJ:~$ sudo apt install --reinstall virtualbox-5.2
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Les paquets suivants seront ENLEVÉS :
virtualbox-5.1
Les NOUVEAUX paquets suivants seront installés :
virtualbox-5.2
0 mis à jour, 1 nouvellement installés, 1 à enlever et 1 non mis à jour.
Il est nécessaire de prendre 74,3 Mo dans les archives.
Après cette opération, 4 826 ko d'espace disque supplémentaires seront utilisés.
Souhaitez-vous continuer ? [O/n]
Réception de : 1 http://download.virtualbox.org/virtualbox/debian/ trusty/contrib virtualbox-5.2 i386 5.2.2-119230~Ubuntu~trusty [74,3 MB]
74,3 Mo réceptionnés en 48s (1 517 ko/s)
Préconfiguration des paquets...
(Lecture de la base de données... 239043 fichiers et répertoires déjà installés.)
Suppression de virtualbox-5.1 (5.1.30-118389~Ubuntu~trusty) ...
Traitement des actions différées (« triggers ») pour desktop-file-utils (0.22-1ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour mime-support (3.54ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour gnome-menus (3.10.1-0ubuntu2) ...
Traitement des actions différées (« triggers ») pour shared-mime-info (1.2-0ubuntu3) ...
Traitement des actions différées (« triggers ») pour hicolor-icon-theme (0.13-1) ...
Traitement des actions différées (« triggers ») pour libc-bin (2.19-0ubuntu6.13) ...
Sélection du paquet virtualbox-5.2 précédemment désélectionné.
(Lecture de la base de données... 238235 fichiers et répertoires déjà installés.)
Préparation du dépaquetage de .../virtualbox-5.2_5.2.2-119230~Ubuntu~trusty_i386.deb ...
Dépaquetage de virtualbox-5.2 (5.2.2-119230~Ubuntu~trusty) ...
Traitement des actions différées (« triggers ») pour ureadahead (0.100.0-16) ...
ureadahead will be reprofiled on next reboot
Traitement des actions différées (« triggers ») pour hicolor-icon-theme (0.13-1) ...
Traitement des actions différées (« triggers ») pour shared-mime-info (1.2-0ubuntu3) ...
Traitement des actions différées (« triggers ») pour desktop-file-utils (0.22-1ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour mime-support (3.54ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour gnome-menus (3.10.1-0ubuntu2) ...
Paramétrage de virtualbox-5.2 (5.2.2-119230~Ubuntu~trusty) ...
addgroup: Le groupe « vboxusers » existe déjà en tant que groupe système. Fin de la procédure.
Traitement des actions différées (« triggers ») pour libc-bin (2.19-0ubuntu6.13) ...
joel@joel-K70IJ:~$
joel@joel-K70IJ:~$ sudo /sbin/vboxconfig
[sudo] password for joel:
Adding system startup for /etc/init.d/vboxdrv ...
/etc/rc0.d/K80vboxdrv -> ../init.d/vboxdrv
/etc/rc1.d/K80vboxdrv -> ../init.d/vboxdrv
/etc/rc6.d/K80vboxdrv -> ../init.d/vboxdrv
/etc/rc2.d/S20vboxdrv -> ../init.d/vboxdrv
/etc/rc3.d/S20vboxdrv -> ../init.d/vboxdrv
/etc/rc4.d/S20vboxdrv -> ../init.d/vboxdrv
/etc/rc5.d/S20vboxdrv -> ../init.d/vboxdrv
Adding system startup for /etc/init.d/vboxballoonctrl-service ...
/etc/rc0.d/K65vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc1.d/K65vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc6.d/K65vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc2.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc3.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc4.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
/etc/rc5.d/S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
Adding system startup for /etc/init.d/vboxautostart-service ...
/etc/rc0.d/K65vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc1.d/K65vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc6.d/K65vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc2.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc3.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc4.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
/etc/rc5.d/S35vboxautostart-service -> ../init.d/vboxautostart-service
Adding system startup for /etc/init.d/vboxweb-service ...
/etc/rc0.d/K65vboxweb-service -> ../init.d/vboxweb-service
/etc/rc1.d/K65vboxweb-service -> ../init.d/vboxweb-service
/etc/rc6.d/K65vboxweb-service -> ../init.d/vboxweb-service
/etc/rc2.d/S35vboxweb-service -> ../init.d/vboxweb-service
/etc/rc3.d/S35vboxweb-service -> ../init.d/vboxweb-service
/etc/rc4.d/S35vboxweb-service -> ../init.d/vboxweb-service
/etc/rc5.d/S35vboxweb-service -> ../init.d/vboxweb-service
vboxdrv.sh: Stopping VirtualBox services.
vboxdrv.sh: Building VirtualBox kernel modules.
vboxdrv.sh: Starting VirtualBox services.
vboxdrv.sh: Starting VirtualBox services.
joel@joel-K70IJ:~$
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#20 Le 19/12/2017, à 20:07
- lynn
Re : Virtualbox Installation défaillante
Virtualbox fonctionne maintenant?
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#21 Le 19/12/2017, à 20:16
- degolarson
Re : Virtualbox Installation défaillante
Hé non toujours pas, même message
merci quand même !
Dernière modification par degolarson (Le 19/12/2017, à 20:17)
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#22 Le 19/12/2017, à 21:10
- lynn
Re : Virtualbox Installation défaillante
Essaies de désinstaller tous les paquets virtualbox puis de réinstaller
sudo apt autoremove --purge virtualbox* && sudo apt clean && sudo apt update && sudo apt install -y virtualbox-5.2
Ceci fait, postes le retour de la commande
virtualbox
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#23 Le 19/12/2017, à 21:32
- degolarson
Re : Virtualbox Installation défaillante
joel@joel-K70IJ:~$ sudo apt autoremove --purge virtualbox* && sudo apt clean && sudo apt update && sudo apt install -y virtualbox-5.2
[sudo] password for joel:
E: L'option --purge de la ligne de commande n'est pas reconnue
joel@joel-K70IJ:~$ sudo apt autoremove sudo apt purge virtualbox* && sudo apt clean && sudo apt update && sudo apt install -y virtualbox-5.2
E: L'opération autoremove n'est pas valable
joel@joel-K70IJ:~$ sudo apt autoremove virtualbox* sudo apt purge virtualbox* && sudo apt clean && sudo apt update && sudo apt install -y virtualbox-5.2
E: L'opération autoremove n'est pas valable
joel@joel-K70IJ:~$
mes tentatives de bidouille ....
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne
#24 Le 19/12/2017, à 21:35
- lynn
Re : Virtualbox Installation défaillante
sudo apt-get autoremove --purge virtualbox* && sudo apt clean && sudo apt update && sudo apt install -y virtualbox-5.2
Dernière modification par lynn (Le 19/12/2017, à 21:36)
«C'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!»
Coluche
Hors ligne
#25 Le 19/12/2017, à 22:12
- degolarson
Re : Virtualbox Installation défaillante
J'ai entre deux fait séparément les commandes apt-get remove puis apt-get purge, puis clean et update et enfin installé
joel@joel-K70IJ:~$ sudo apt install -y virtualbox-5.2
[sudo] password for joel:
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Les paquets suivants seront mis à jour :
virtualbox-5.2
1 mis à jour, 0 nouvellement installés, 0 à enlever et 1 non mis à jour.
Il est nécessaire de prendre 72,7 Mo dans les archives.
Après cette opération, 2 541 ko d'espace disque seront libérés.
Réception de : 1 http://download.virtualbox.org/virtualbox/debian/ trusty/contrib virtualbox-5.2 i386 5.2.4-119785~Ubuntu~trusty [72,7 MB]
72,7 Mo réceptionnés en 1min 14s (977 ko/s)
Préconfiguration des paquets...
(Lecture de la base de données... 239068 fichiers et répertoires déjà installés.)
Préparation du dépaquetage de .../virtualbox-5.2_5.2.4-119785~Ubuntu~trusty_i386.deb ...
Dépaquetage de virtualbox-5.2 (5.2.4-119785~Ubuntu~trusty) sur (5.2.2-119230~Ubuntu~trusty) ...
Traitement des actions différées (« triggers ») pour ureadahead (0.100.0-16) ...
ureadahead will be reprofiled on next reboot
Traitement des actions différées (« triggers ») pour hicolor-icon-theme (0.13-1) ...
Traitement des actions différées (« triggers ») pour shared-mime-info (1.2-0ubuntu3) ...
Traitement des actions différées (« triggers ») pour desktop-file-utils (0.22-1ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour mime-support (3.54ubuntu1.1) ...
Traitement des actions différées (« triggers ») pour gnome-menus (3.10.1-0ubuntu2) ...
Paramétrage de virtualbox-5.2 (5.2.4-119785~Ubuntu~trusty) ...
addgroup: Le groupe « vboxusers » existe déjà en tant que groupe système. Fin de la procédure.
Traitement des actions différées (« triggers ») pour libc-bin (2.19-0ubuntu6.13) ...
joel@joel-K70IJ:~$
mais
RTR3InitEx failed with rc=-1912 (rc=-1912)
The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing
'/sbin/vboxconfig'
may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.
where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user.
Dernière modification par degolarson (Le 19/12/2017, à 22:24)
2018-2020 Xubuntu 18.04 LTS 64b Nov 2020 Debian Buster Laptop Asus PRO79IJ-TY025E SSD 250Go RAM 2.9Go puis 4Go en sept2020 2 x Pentium (R) Dual-Core T4200 2GHz année 2009 LiveboxSosh
IntelMobile4SeriesGMA500, wifi Atheros 9285
Doucement, nous sommes pressés
Les jeunes sont ce qu'en font les vieux cons (Pierre Desproges )
Hors ligne