General :: Make A Shared Folder For Usage In Virtualbox?
Jul 16, 2011
I have a similar question: How to make a share folder of virtualbox if I have installed linux Ubuntu 10.10 in virtualbox machine virtualbox is my guest machine and Linux Mint is my host machine. I have installed VirtualBox OSE in Linux Mint and I have installed Windows XP/7, made a sharing folder from guest machine Windows XP/7. My host machine is Linux Mint/Ubuntu, I mean it is on my PC. How to make a share folder in virtual machine linux ubuntu 10.10 LTS in virtualbox OSE to host machine Linux Mint 11 Katya?
View 2 Replies
ADVERTISEMENT
Feb 6, 2011
I have virtualbox installed, and arch set up as the guest OS now i have made my home folder shared folder with the guest OS but at first my arch couldnt read my home folder.i realized the permission setting for the home folder is set as rwx to myself, and nothing to everyone else.so i chmod -R 755 to everything and that seemed to have solved the problem now i want to make my home folder readonly to my guest OS. do i just do chmod -R 744 to my home folder? i already messed up something when i set 644 to everything in my home folder, as my dropbox stopped working so im afraid of something like that happening to me again, otherwise i d love to experiment
another question is, are .so files supposed to be executable? I googled it, and it seems they dont have to be.But my dropbox stopped working after the .so files in /home/myhomefolder/.dropbox got assigned 644 D:
View 2 Replies
View Related
Jul 28, 2011
I'm mounting a shared folder in an arch linux guest on a windows 7 host in Virtual Box. The shared folder's filesystem is ext3 and is mounted in windows 7 with Ext2Fsd. I mount the shared folder at boot with this fstab:
D_DRIVE /home/tony vboxsf rw,gid=1000,uid=1000,auto 0 0
I believe my user in the guest OS has the right uid and gid:
[tony@kiwi ~]$ id uid=1000(tony) gid=1000(tony) groups=1000(tony),1002,(vboxsf)
I can create files and remove them fine, but I can't seem to create directories.
[tony@kiwi ~]$ mkdir foo mkdir: cannot create directory `foo': Protocol error
Its weird because the directory looks like its there, sort of.
[Code]...
View 1 Replies
View Related
Jul 30, 2011
I have Ubuntu server with Apache 2, PHP, and various DBMSs running in VirtualBox on my Mac host for my web development work. To easily create/edit the files I'm working on, I mounted a directory from my Mac host via the VirtualBox shared directory feature to /var/www/. Every file I create on my Mac host has the following permissions on the on the Server: -rw-r--r-- 1 root root 6 2011-07-30 01:27 test.The problem is that most PHPscripts/frameworks/etc.need write access to some files.It is extremely annoying to have to chmod every new file/directory that needs write access.Is there a way to set the correct permissions for the files/directories automatically?
View 2 Replies
View Related
Jul 7, 2011
I'm running Ubuntu 11.04 (guest) on Windows 7 (host) with the guest additions installed. I have an auto-mount folder that maps to my D: drive on the host which I can access using sudo ls /media/sf_D_DRIVE - however, even when my user (ross) is a member of the vboxsf group I get a permission denied error when attempting to explore it. I have restarted since adding my user to the vboxsf group.
This should work because I am a member of the group (which has rwx rights), so why doesn't it?
ross@panther:~$ ls -l /media
total 8
drwxrwx--- 1 root vboxsf 8192 2011-07-03 22:24 sf_D_DRIVE
ross@panther:~$ ls -l /media/sf_D_DRIVE/
ls: cannot open directory /media/sf_D_DRIVE/: Permission denied
[Code].....
View 1 Replies
View Related
Feb 4, 2010
I am running ubuntu using VirtualBox on a Macbook Pro. I wanted to share my documents folder on the Mac in the virtual machine. I had no issues creating/mounting the share folder on ubuntu. However the file permissions for the shared folder are owned by root.
Code:
drwx------ 1 root root 1088 2010-02-04 10:18 Mac_Share/
I used the following command to mount the folder:
Code:
sudo mount -t vboxsf Share_Documents ~/Mac_Share/
I checked that the folder is mounted I can see what is there using
Code:
sudo ls Mac_Share/
How do I make the folder accessible to the user? Is there another -option needed to do this in the mount command?
View 9 Replies
View Related
Aug 31, 2010
I am attempting to make a shared folder for people that VPN into the network. This folder needs to be accessible to windows and mac machines. So far I have the VPN through ppptd working. I just don't know how to make a folder. I feel like this should be fairly easy. I am using Lucid Lynx server edition.
View 1 Replies
View Related
Oct 6, 2010
I recently applied a bunch of updates to my guest OS (Ubuntu) inside VirtualBox (NOTE: NOT updates to virtual box. Updates to the OS) and now on startup, I get the error:
"An error occurred while mounting /media/share. Press S to skip mounting or M for manual recovery"
I tried a fix which said to comment out the mounting in /etc/fstab and instead put it into rc.local, but this does not work.
Also, when I press "M" to try it manually and type:
mount.vboxsf -w mysharedfolder /media/share
I get the error:
mount.vboxsf: mounting failed with the error: No such device
But before I updated Ubuntu, that shared folder worked perfectly!
View 1 Replies
View Related
Aug 31, 2010
I have mounted a shared folder in Ubuntu in VirtualBox, but I have to remount everytime I restart. how do I make this command run (for mounting) on startup or make it permanent?
View 2 Replies
View Related
Mar 4, 2010
OpenSUSE installed in a Virtualbox Virtual Machine and I want to set a shared folder.
1 - Set up a Virtual Machine and install OpenSUSE 11.2
2 - Create a shared folder on host (HostFolder)
3 - Setup the shared folder in Virtualbox Via the Virtual Machine details or via Devices > Shared Folders...
4 - Install dependencies for running the Virtualbox installer You need to install the right development kernelpackage for your machinetype (use 'zypper search -i kernel' to see what's installed) sudo zypper make gcc kernel-source kernel-hosttype/default-devel
5 - Run the Virtual Machine and go to Devices > Guest Additions This mounts an iso image in your OpenSUSE guest.
6 - Open a root terminal and run
cd /usr/src/linux
make oldconfig && make prepare && make scripts && make dep
cp ../linux-obj/$HOSTTYPE/default/Module.symvers .
make prepare
* A commenter on previously mentioned thread says this step is unnecessary but it doesn't work without on my system. I suggest trying step 7 first and returning to step 6 if that fails. *
7 - Run ./VirtualboxLinux yourhosttype .run from the mounted iso image.
8 - Create shared folder in OpenSUSE (GuestFolder)
9 - Test with sudo mount -t vboxsf HostFolder /home/user/GuestFolder It works? Great! Let's set up the system so it automounts for your regular useraccount instead of root-only access.
10 - Add this line to /etc/fstab HostFolder /home/user/GuestFolder vboxsf defaults,uid=1000,gid=1000 0 0
11 - It works for me but if it still doesn't automount after a reboot; sudo mount -a
View 1 Replies
View Related
May 13, 2010
I wanted to enable file sharing in for one of my folders under the home directory. I noticed that the 'not shared' and 'shared' always defaulted back to 'not shared'. And now I see what looks like an electrical plug icon symbol over the folder icon symbol like I might see used for some of the root folders. What does the new icon indicate about the folder attributes and why does file sharing default to 'not shared'?
View 1 Replies
View Related
Nov 30, 2010
I need to find the memory usage of a shared library loaded in Linux environment.
I need this information for deciding on whether to make the library part in to application or a seperate application itself.
View 3 Replies
View Related
Aug 13, 2010
I have two partitions: one for Ubuntu 64-bit and another one with the format NTFS only for keeping documents. I have shared one folder of this NTFS partition, but every time I reboot the PC (or shutdown and start again for that matter) the folder is no longer shared.Why?How can I prevent this folder to be un-shared when I reboot the computer?
View 3 Replies
View Related
Sep 21, 2010
My Linux username is "virchanza" and my group is "virchanza".How do I make a publicly-accessible folder within my private home folder?
View 3 Replies
View Related
May 26, 2010
- I have ubuntu installed, and win7 is installed using vbox.
- I know how to set shared folder, so win7 can access the folder in ubuntu.
- I need to have an access to certain folder in win7 from ubuntu.
How can I do that?It is not about samba, right?
View 5 Replies
View Related
May 11, 2009
I am using rhel5 running as samba PDC.Most of the user save their data on a common folder on the server.Now I want to backup this data to some other location to have redundancy.It could be external USB HDD or other folder on the same server.How to create backup script and automate it using cron.
View 1 Replies
View Related
Jun 7, 2011
please help to mount windows storage server 2008 shared drives and folders( without password) to rhel ent server 6 through acl. I want restricted access to those drives and folders.
View 3 Replies
View Related
Aug 17, 2010
I'm setting up a Linux machine thet'll be shared by several users, some of whom will be admins. Is there a way to restrict access to a user's home folder (encrypt or block completely) for other regular/admin users?
View 3 Replies
View Related
Mar 15, 2011
I would like to share a folder from a Linux Guest with a Windows host (with read and write access if possible) in VirtualBox. I read in these two links: here and here that it's possible to do this using Samba, but I am a little bit lost and need more information on how to proceed.
So far, I managed to set up two network adapters (one NAT and one host-only) and to install Samba on the Linux guest, but I have the following questions now: What do I need to type in samba.conf to share a folder from the Linux guest? (the tutorial provided in one of the links above only explains how to share home directories) Are there any Samba commands that I need to run on the guest to enable sharing? How do I make sure that these folders are only available to the host OS and not on the Internet? Once the Linux guest is setup, how do I access each of the individual shared folders from the Windows host? I read that I need to mount a drive on Windows to do this, but do I use Samba logins, or Linux logins, also do I use localhost? or do I need to set up an IP for this?
View 1 Replies
View Related
May 4, 2011
Is possible to make a folder permission like below?
-User can create files/folders in the shared folder.
-But the files/folders they created, cannot be delete/change by em.
(only can be delete by root users)
-Each new files/folders created will auto owner to root only.
View 4 Replies
View Related
Sep 4, 2010
My problem is extremely slow write on hard disk and 100% cpu usage and it happens when I want to write something on the hard derive not any other external derive.
Tried a fresh ubuntu install. No change. I am not even sure if it is a software or hardware problem.
View 1 Replies
View Related
Jul 15, 2010
I've setup the .ssh/authorized_keys and am able to login with the new "user" using the pub/private key ... I have also added "user" to the sudoers list ... the problem I have now is when I try to execute a sudo command, something simple like:
$ sudo cd /root
it will prompt me for my password, which I enter, but it doesn't work (I am using the private key password I set)Also, ive disabled the users password using
$ passwd -l user
I am trying to harden my system ... the ultimate goal is to use pub/private keys to do logins versus simple password authentication. I've figured out how to set all that up via the authorized_keys file.Additionally I will ultimately prevent server logins through the root account. But before I do that I need sudo to work for a second user (the user which I will be login into the system with all the time).
For this second user I want to prevent regular password logins and force only pub/private key logins, if I don't lock the user via" passwd -l user ... then if i dont use a key, i can still get into the server with a regular password.But more importantly I need to get sudo to work with a pub/private key setup with a user whos had his/her password disabled.
1) I've adjusted /etc/ssh/sshd_config and set PasswordAuthentication no This will prevent ssh password logins (be sure to have a working public/private key setup prior to doing this
2) I've adjusted the sudoers list visudo and added
root ALL=(ALL) ALL
dimas ALL=(ALL) NOPASSWD: ALL
3) root is the only user account that will have a password, I am testing with two user accounts "dimas" and "sherry" which do not have a password set (passwords are blank, passwd -d user)
The above essentially prevents everyone from logging into the system with passwords (a public/private key must be setup). Additionally users in the sudoers list have admin abilities. They can also su to different accounts. So basically "dimas" can sudo su sherry, however "dimas can NOT do su sherry. Similarly any user NOT in the sudoers list can NOT do su user or sudo su user.
View 3 Replies
View Related
Sep 13, 2010
I am having trouble accessing my shared folders from VirtualBox on Ubuntu 10.04. I installed guest additions and made sure I had my folder selected in the settings but I just can not access it. I tried re-installing guest additions as well.
View 1 Replies
View Related
Jan 30, 2011
I have a problem with my partitions being shrunk after VirtualBox PUEL 4.0.2 install. I tried VB OSE, loaded XP Pro and all necessary programs and realized it does not support sharing of folders. I then removed it and installed PUEL with XP Pro and all the same programs. The USB would not work in PUEL so I removed it and installed it as root to see if it would access the USB's. Halfway through the install it hung and gave me a space error.I cannot get the space back from whatever VB did. I deleted the .vdi's and all VM's and reinstalled VB PUEL to see if I could recover it. Nope. Then I tried GPARTED to try and reset whatever is reading the sizes incorrectly.sudo df -Th gives me:
paul@mobile2:/$ sudo df -Th
[sudo] password for paul:
Filesystem Type Size Used Avail Use% Mounted on
[code]....
View 2 Replies
View Related
May 1, 2010
Moved to virtualization forum: [URL].. I just upgraded my Ubuntu VirtualBox guest to Lucid. My host machine shares two folders with the guest. I have them listed in my /etc/fstab so they're automatically mounted:
share /mnt/share vboxsf defaults 0 0 For some reason, it looks like Ubuntu attempts to mount these shared folders twice. The first time, the mount doesn't succeed, but the second time, it does, so by the time I actually log in, the shares work properly.
Karmic would just print an error message at boot, but now Lucid makes me press a key to continue booting when the mount fails. Ideally, I'd like to figure out how to make the first mount attempt work properly. But if that's complicated, just disabling Lucid's prompt would make me happy.
View 1 Replies
View Related
Sep 20, 2011
How to check if some folder is on a shared disk or on a local disk?
View 1 Replies
View Related
Dec 10, 2010
i have been running windows from ME through to Windows 7 over the years. and i must admit that because of all the flaws with the earlier versions and those wonderful little viruses that seem to show up even though your teenagers swear they didn't do anything ,have made me somewhat skilled at formatting and reinstalling the OS to the point where i have done it for several other ppl to help them out. I rather enjoy doing it actually.
and i have been a big fan of lets just call it "open source" windows software. now this ubuntu thing seems to have taken some of the fun away..
i ran the cd version of 10.10 and really liked what i saw so i installed it alongside my windows 7. naturally as luck would have it something went astray and i can no longer boot to win7. not a big deal. i was going to format and reinstall anyways. ha ha.
i have been reading through the forum learning what i can but now my question
i still have a machine running windows on my home network.
what i would like to do is make a shortcut to a folder on it from my ubuntu desktop. i do have full access to the machine and the folder , i would just like a shortcut .
View 8 Replies
View Related
Feb 16, 2010
How make ftp-access to one folder on my machine?I have Linux Ubuntu 9.04 (or .10).And what address string would be for this?
View 2 Replies
View Related
Mar 15, 2010
I was trying to get the status of memory usage and disk usage using sigar in windows and ubuntu. done this in windows by just copying the sigar library into jdk library. But i was unable to do so in ubuntu. I've copied the library to java-6-sun library but still can't run the program.
View 14 Replies
View Related
Nov 15, 2010
Is there any way to monitor one process' CPU usage and RAM usage over time on Linux? I am trying to change to a cheaper VPS and need to work out what level of CPU and RAM I need!
View 2 Replies
View Related