VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (691 - 693 of 16363)

Ticket Resolution Summary Owner Reporter
#5767 fixed Add OPEN function Lior.Albaz
Description

I want to open a new machine from a different location as the defualt so I change it in the General setting but it didn't work. It can't find the machine from the new location.

Why there is no OPEN function ? only NEW ? With Open function I can point to my machine folder location.

#18052 wontfix Add Solus (64-bit) as Linux operating system -> won't fix for now kyrios
Description

Solus is an independent x86_64 linux operating system built from scratch that exists since 2015 and that is quite popular according the the Distrowatch Ranking page.

As a new user, it is not obvious what should be selected for creating a new virtual machine for this OS as it is not based on another linux distribution (Ubuntu, Debian, Fedora, openSUSE, ...). Seeing it's there for a few years now and it seems to have quite a large user base, it would be nice to find "Solus (64-bit)" in the versions.

#11174 obsolete Add Support for Foresight Linux johnha
Description

To add support for the Foresight Linux distribution to vboxadd guest additions. A few very simple changes are required in the vboxadd and vboxadd-service startup scripts.

Mainly these changes are to check for the existence of /etc/conaryrc, and if so set system to foresight. Then wherever system=redhat, foresight will also use those functions. However, the pidfile needs to change from /var/lock/subsys/vboxadd-service to /var/lock/subsys/vboxadd because foresight scripts don't look for "-service" when navigating scripts at shutdown time. This means that without these changes, vboxsf mounts do not get unmounted when the box is shutdown or reboot. A patch to apply against the latest version of vbox guest tools to support foresight linux follows. So far, my testing with these changes to the init scripts for vboxadd and vboxadd-service work perfectly with the Foresight distribution.

--- orig/vboxadd	2012-11-07 22:54:55.000000000 -0700
+++ new/vboxadd	2012-11-07 22:50:30.000000000 -0700
@@ -65,6 +65,8 @@
     system=gentoo
 elif [ -f /etc/lfs-release -a -d /etc/rc.d/init.d ]; then
     system=lfs
+elif [ -f /etc/conaryrc ]; then
+    system=foresight
 else
     system=other
 fi
@@ -85,7 +87,7 @@
     }
 fi
 
-if [ "$system" = "redhat" ]; then
+if [ "$system" = "redhat" ] || [ "$system" = "foresight" ]; then
     . /etc/init.d/functions
     fail_msg() {
         echo_failure
diff -Nuar orig/vboxadd-service new/vboxadd-service
--- orig/vboxadd-service	2012-11-07 22:55:03.000000000 -0700
+++ new/vboxadd-service	2012-11-07 22:50:41.000000000 -0700
@@ -49,6 +49,9 @@
 elif [ -f /etc/lfs-release ]; then
     system=lfs
     PIDFILE="/var/run/vboxadd-service.pid"
+elif [ -f /etc/conaryrc ]; then
+    system=foresight
+    PIDFILE="/var/lock/subsys/vboxadd"
 else
     system=other
     if [ -d /var/run -a -w /var/run ]; then
@@ -56,7 +59,7 @@
     fi
 fi
 
-if [ "$system" = "redhat" ]; then
+if [ "$system" = "redhat" ] || [ "$system" = "foresight" ] ; then
     . /etc/init.d/functions
     fail_msg() {
         echo_failure
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy