Custom Query (16363 matches)
Results (796 - 798 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1351 | fixed | OS X seamless mode input issues | ||
| Description |
|
|||
| #1352 | fixed | OS X bidirectional shared clipboard does nothing | ||
| Description |
For me nothing is ever transferred between the OS X clipboard or the Windows XP clipboard in either direction. |
|||
| #1357 | fixed | Wrong test for file in debian/vboxdrv.init.in | ||
| Description |
The test, which checks for an existing kernel module will never fail, because of a missing "-f" in the test. Therefore, "No suitable module for running kernel found." will never get displayed. The following patch fixes this: --- debian/vboxdrv.init.in (Revision 7486)
+++ debian/vboxdrv.init.in (Arbeitskopie)
@@ -88,7 +88,7 @@
log_daemon_msg "Starting VirtualBox kernel module" "$MODNAME";
# ensure the module is loaded
if ! running; then
- if [ ! -f "$KDIR/$MODNAME.o" -a ! "$KDIR/$MODNAME.ko" ]; then
+ if [ ! -f "$KDIR/$MODNAME.o" -a ! -f "$KDIR/$MODNAME.ko" ]; then
failure "No suitable module for running kernel found."
fi
if ! modprobe $MODNAME > /dev/null 2>&1; then
|
|||
Note:
See TracQuery
for help on using queries.

