I'm using ubuntu and windows 7 dualboot,and have xampp installed on both I want to have access to one localhost directory whether I'm using windows or ubuntu. both systems are installed on the same partition.
2 Answers
This is an old question but I haven't seen it properly answered yet. Here is what you need to do:
- Install XAMPP in Windows and LAMPP in Ubuntu
- Boot into Ubuntu and record your Windows htdocs folder (say
/media/user/OS/xampp/htdocs) - Go to
/opt/lampp/etcand edithttpd.confand make the following changes (you will need root permissions to do so) - Replace
by#DocumentRoot "/opt/lamp/htdocs"#DocumentRoot "/media/user/OS/xampp/htdocs" - Replace
byDirectory "/opt/lampp/htdocs"Directory "/media/user/OS/xampp/htdocs" In the
section replaceIfModule unixd_module
byUser daemon Group daemonUser yourUsername Group yourGroupname
Typically yourUsername and yourGroupname are the same: the name of your Ubuntu user but you can check this out in/etc/passwdand/etc/groupsRestart LAMPP services and you should be good to go.
- 6,768
- 181
- 1
- 3
I would recommend having the "shared" HTDOCS folder on your Windows side as Ubuntu can read NTFS natively.
You will need to use FSTAB to mount your Windows partition when Ubuntu boots so that you can access the web files.
Once you have a regular mount point for the Windows partition you need to create a symbolic link in Ubuntu so that your web files are still accessible by Ubuntu Apache but it can still read from its default location.
E.g. sudo chown -R $USER /var/www; ln -s /var/www /media/Windows/xampp/htdocs
I'm only using the above code as an example. Please do further reading to get your scenario correct.
- 10,906
- 3
- 32
- 41