Changeset 39121 in vbox
- Timestamp:
- Oct 26, 2011 1:57:45 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 74556
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_Installation.xml
r38643 r39121 281 281 <para>The VirtualBox kernel module is automatically installed on your 282 282 system when you install VirtualBox. To maintain it with future kernel 283 updates, for most Linux distributions -- for example Fedora Core 11 and 284 later, Ubuntu 8.04 (Hardy) and later and Mandriva 2009.1 and later --, 285 generally we recommend installing Dynamic Kernel Module Support 283 updates, for those Linux distributions which provide it -- most 284 current ones -- we recommend installing Dynamic Kernel Module Support 286 285 (DKMS)<footnote> 287 286 <para>See <ulink … … 304 303 305 304 <listitem> 306 <para>On a Mandriva system:<screen>urpmi dkms</screen></para>305 <para>On a Mandriva or Mageia system:<screen>urpmi dkms</screen></para> 307 306 </listitem> 308 307 </itemizedlist></para> -
trunk/doc/manual/fr_FR/user_Installation.xml
r39117 r39121 283 283 <para>Le module noyau de VirtualBox est automatiquement installé sur votre 284 284 système quand vous installez VirtualBox. Pour le maintenir avec les futures 285 mises à jour du noyau, pour les distributions Linux récentes, -- par 286 exemple, Fedora Core 5 et supérieur, Ubuntu 7.10 (Gutsy) et supérieur et 287 Mandriva 2007.1 et supérieur --, nous recommandons en général d'installer 285 mises à jour du noyau, pour les distributions Linux qui le fournissent -- 286 la plupart des distributions actuelles --, nous recommandons d'installer 288 287 le Dynamic Kernel Module Support (DKMS) (support de module noyau dynamique)<footnote> 289 288 <para>Voir <ulink … … 306 305 307 306 <listitem> 308 <para>Sur un système Mandriva :<screen>urpmi dkms</screen></para>307 <para>Sur un système Mandriva ou Mageia :<screen>urpmi dkms</screen></para> 309 308 </listitem> 310 309 </itemizedlist></para> -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r38977 r39121 77 77 "module by executing<br/><br/>" 78 78 " <font color=blue>'/etc/init.d/vboxdrv setup'</font><br/><br/>" 79 "as root. Users of Ubuntu, Fedora or Mandriva should install the DKMS"80 " package first. This package keeps track of Linux kernel changes and "79 "as root. If it is available in your distribution, you should install the " 80 "DKMS package first. This package keeps track of Linux kernel changes and " 81 81 "recompiles the vboxdrv kernel module if necessary." 82 82 ); -
trunk/src/VBox/Installer/linux/VBoxSysInfo.sh
r38093 r39121 35 35 # found to be "of interest". 36 36 get_linux_info () { 37 if [ -r /etc/lsb-release ] && grep Ubuntu /etc/lsb-release >/dev/null 2>&137 if which lsb_release > /dev/null 2>&1 38 38 then 39 # Ubuntu-based system 40 . /etc/lsb-release 41 print_linux_info "Ubuntu" $DISTRIB_RELEASE 39 # LSB-compliant system 40 print_linux_info `lsb_release -i -s` `lsb_release -r -s` 42 41 elif [ -r /etc/debian_version ] 43 42 then
Note:
See TracChangeset
for help on using the changeset viewer.