Changeset 56881 in vbox
- Timestamp:
- Jul 9, 2015 4:57:23 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_AdvancedTopics.xml
r56609 r56881 592 592 593 593 <para>After this, you will need to at least compile the kernel modules 594 by running the command <screen> /usr/lib/VBoxGuestAdditions/vboxadd setup</screen>594 by running the command <screen> rcvboxadd setup</screen> 595 595 as root (you will need to replace <emphasis>lib</emphasis> by 596 596 <emphasis>lib64</emphasis> on some 64bit guests), and on older guests … … 599 599 that the modules get loaded.</para> 600 600 601 <para>To setup the time synchronization service, run the command 602 <screen> /usr/lib/VBoxGuestAdditions/vboxadd-service setup</screen> and 601 <para>To setup the time synchronization service, 603 602 add the service vboxadd-service to the default runlevel. To set up the 604 X11 and OpenGL part of the Guest Additions, run the command <screen> /usr/lib/VBoxGuestAdditions/vboxadd-x11 setup</screen> 603 X11 and OpenGL part of the Guest Additions, run the command 604 <screen> rcvboxadd-x11 setup</screen> 605 605 (you do not need to enable any services for this).</para> 606 606 607 <para>To recompile the guest kernel modules, use this command: <screen> /usr/lib/VBoxGuestAdditions/vboxadd setup</screen> 607 <para>To recompile the guest kernel modules, use this command: 608 <screen> rcvboxadd setup</screen> 608 609 After compilation you should reboot your guest to ensure that the new 609 610 modules are actually used.</para> -
trunk/doc/manual/en_US/user_GuestAdditions.xml
r56541 r56881 601 601 or not installed, the guest kernel modules will need to be 602 602 recreated manually whenever the guest kernel is updated using 603 the command <screen> /etc/init.d/vboxadd setup</screen> as root.603 the command <screen>rcvboxadd setup</screen> as root. 604 604 </para> 605 605 </listitem> -
trunk/doc/manual/en_US/user_Installation.xml
r56541 r56881 392 392 reinstalled by executing (as root):</para> 393 393 394 <screen> /etc/init.d/vboxdrv setup</screen>394 <screen>rcvboxdrv setup</screen> 395 395 </listitem> 396 396 </orderedlist></para> … … 429 429 appropriate Linux kernel headers (see <xref 430 430 linkend="externalkernelmodules" />). After correcting any problems, do 431 <screen>sudo /etc/init.d/vboxdrv setup</screen>This will start a431 <screen>sudo rcvboxdrv setup</screen>This will start a 432 432 second attempt to build the module.</para> 433 433 -
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r56860 r56881 455 455 # Put mount.vboxsf in the right place 456 456 ln -sf "$lib_path/$PACKAGE/mount.vboxsf" /sbin 457 # And an rc file to re-build the kernel modules and re-set-up the X server. 458 ln -sf "$lib_path/$PACKAGE/vboxadd" /sbin/rcvboxadd 459 ln -sf "$lib_path/$PACKAGE/vboxadd-x11" /sbin/rcvboxadd-x11 457 460 # At least Fedora 11 and Fedora 12 require the correct security context when 458 461 # executing this command from service scripts. Shouldn't hurt for other … … 529 532 # Remove other files 530 533 rm /sbin/mount.vboxsf 2>/dev/null 534 rm /sbin/rcvboxadd 2>/dev/null 535 rm /sbin/rcvboxadd-x11 2>/dev/null 531 536 rm /etc/udev/rules.d/60-vboxadd.rules 2>/dev/null 532 537 } -
trunk/src/VBox/Installer/linux/install.sh
r56842 r56881 112 112 check_binary "/usr/bin/VBoxBalloonCtrl" "$install_dir" && 113 113 check_binary "/usr/bin/VBoxAutostart" "$install_dir" && 114 check_binary "/usr/bin/vboxwebsrv" "$install_dir" 115 check_binary "/usr/bin/vbox-img" "$install_dir" 114 check_binary "/usr/bin/vboxwebsrv" "$install_dir" && 115 check_binary "/usr/bin/vbox-img" "$install_dir" && 116 check_binary "/sbin/rcvboxdrv" "$install_dir" 116 117 } 117 118 … … 417 418 ln -sf $INSTALLATION_DIR/VBox.sh /usr/bin/VBoxDTrace 418 419 fi 420 ln -sf $INSTALLATION_DIR/vboxdrv.sh /sbin/rcvboxdrv 419 421 # Unity and Nautilus seem to look here for their icons 420 422 ln -sf $INSTALLATION_DIR/icons/128x128/virtualbox.png /usr/share/pixmaps/virtualbox.png
Note:
See TracChangeset
for help on using the changeset viewer.