Custom Query (16363 matches)
Results (937 - 939 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1601 | fixed | Cannot rewrite files in a shared folder -> please retry with 1.6.0 | ||
| Description |
Running 1.5.4 with Ubuntu 8 guest on Windows XP host. When I use gedit to change a textfile in the shared folder, I can access it but not save the file. It does not matter if I do sudo gedit or not. Syslog says: vboxvfs: sf_rename vboxCallRename failed rc=-114 There is no problem adding new files to the shared folder, or copying them out of it. |
|||
| #1603 | fixed | mount vboxsf filesystems automatically => Fixed in 1.6.2 | ||
| Description |
Please add code like the following to /etc/init.d/vboxvfs inside a Linux guest. This will mount and umount the 'vboxsf' filesystems mentioned in /etc/fstab whenever the vboxvfs kernel module is inserted or removed. Thanks. --- vboxvfs-ORG 2008-05-22 17:24:00.000000000 +0200
+++ vboxvfs 2008-05-23 16:14:16.000000000 +0200
@@ -140,16 +140,21 @@
fail "modprobe $modname failed"
}
}
+ # Now we can mount vboxsf filesystems mentioned in /etc/fstab
+ mount -a -t vboxsf
+
succ_msg
return 0
}
stop() {
begin "Stopping VirtualBox Additions shared folder support ";
- if running; then
- rmmod $modname || fail "Cannot unload module $modname"
- fi
- succ_msg
+ # must umount vboxsf filesystems first
+ umount -a -t vboxsf &&
+ if running; then
+ rmmod $modname || fail "Cannot unload module $modname"
+ fi &&
+ succ_msg
return 0
}
|
|||
| #1605 | fixed | Crash when coming out of fullscreen mode on Mac OS X | ||
| Description |
See attached Apple crash report. This only happened once, and I don't know how to reproduce it. |
|||

