![]() |
Portable Windriver
Has anyone made, or know how to make a portable windriver?
The reason being is I want to use it on a portable hard drive and just store the workspace on that for next years season so anyone can take it home and work on it and it can be moved to any computer. |
Re: Portable Windriver
I would imagine that due to licensing constraints, this isn't possible. An alternative is to install WindRiver in a virtual machine, and move it around in that. Of course, at that point Windows will complain about its licensing... (unless you have a corporate license for it).
|
Re: Portable Windriver
But on that thought, if you're just wanting to share the workspace, then using a version control system like SVN would be ideal -- then the members of your team would be able to access the workspace from anywhere in the internet (assuming the server is on the public internet -- doesn't have to be). subclipse integrates nicely into Wind River, and allows you to import/export projects seamlessly. Theres a bit about subclipse in the FRC C++ Programming Guide...
|
Re: Portable Windriver
Quote:
Plus being able to save machine state is invaluable. I'd highly recommend teams with a technical background to give it a whirl; the first few days were excruciating trying to find a fast way to get the build environment on multiple laptops and workstations. You can't beat transferring an already-configured machine over the network :) |
Re: Portable Windriver
Can you post any links on how a team would go about setting up WindRiver for SVN?
|
Re: Portable Windriver
install subversion (http://subversion.tigris.org/getting.html#windows)
run (in cmd) svnadmin create C:/Documents and Settings/longcomplicatedpath/repository (yes, you must use / instead of \ for the path) install subclipse (look in C Programming guide) open SVN Repository View Right click in SVN Repository view, New> Location... (or something like that) enter file:///C:/Documents and Settings/longcomplicatedpath/repository hit ok (if you get an error, tell me what it says) with your project, Right click>Team>Add to repository (something like that) more info at http://svnbook.red-bean.com/en/1.5/svn-book.pdf and in the WRWB help file |
Re: Portable Windriver
can you explain the part about creating the repository or point me to a link? i tried typing svnadmin create[...] in cmd but it doesnt recognize it
|
Re: Portable Windriver
first, did you install subversion?
did it fail or succede? then open cmd and type svnadmin create C:/dir/.../... look in http://svnbook.red-bean.com/en/1.5/svn-book.pdf on page 40, the first line of command and page 31 near the bottom about windows paths |
Re: Portable Windriver
OK, so i created the repos and have created users and put them into different groups. i tried the url, got the certificate, but i am not able to log into it from remote computers, do i have to set some type of permissions or use the ip address?
I just need to be able to access the repo from different computers. |
Re: Portable Windriver
you need to install apache (at least that is how i could only get it to work)
just google apache, download and install 2.2 (fromhttp://www.codeproject.com/KB/winsdk/SubversionApache.aspx) When the installation is finished, go to the bin directory within the Subversion installation, find two files with extension *.so, and put them into the (Apache)/modules directory. The files are mod_authz_svn.so and mod_dav_svn.so. Go to the conf sub-directory within the Apache installation directory and open the httpd.conf file in any text editor. Add the following lines: LoadModule dav_module modules/mod_dav.so LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so Now assuming your reposotory is at C:\svns\repos1 and you want to redirect localhost/svn to it, add this to the httpd.conf: <Location /svn> DAV svn SVNListParentPath on SVNParentPath C:/svns </Location> If you get an error, tell me |
Re: Portable Windriver
once you do that restart apache( or restart the computer), and if that computer's ip address is 192.168.101, on another computr (same network) type in http://192.168.1.101/svn
your web browser, you should see your repository there, now you can access it from other computers then from windriver, new, project> from svn, new connection to http://192.168.1.101/svn/yourrepoitory and finish out the dialog. read the WR help for more details |
Re: Portable Windriver
[EDIT] Actually i followed the directions with editing the httpd file, but when i restart apache i get this error message:
Code:
Invalid command 'DAV', perhaps misspelled or defined by a module not included in the server configuration |
Re: Portable Windriver
did you go to the bin directory within the Subversion installation, find two files with extension *.so, and put them into the (Apache)/modules directory. The files are mod_authz_svn.so and mod_dav_svn.so
also make sure all three lines below are in httpd.conf (and restart apache after you modify it) LoadModule dav_module modules/mod_dav.so LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so If that does not work, copy C:\Program Flies\Subversion\libapr-1.dll and libapriconv-1.dll to (apache)\bin and replace the current ones |
Re: Portable Windriver
I think you need WebDAV not DAV. Not sure though
|
Re: Portable Windriver
no, you need DAV, but you can have WebDAV if you really want. DAV is part of SVN. DAV is related to WebDAV, but different (I think)
EDIT: I dont have WebDAV on my server, just DAV, and Subversion Works fine |
Re: Portable Windriver
i retried everything you just said, but i still get the same error, is there any other way to do it besides using apache?
|
Re: Portable Windriver
I think you can do something like svn://x.y.z.q/repositories/path/not/ending/in/a/slash
never tried that. are you sure that in (apache)/conf/httpd.conf you have the line LoadModule dav_module modules/mod_dav.so uncommented (without a semicolon at the beginning)? |
Re: Portable Windriver
Quote:
|
Re: Portable Windriver
Quote:
you want it without the # sign to uncomment it (what is the error?) |
Re: Portable Windriver
This is what i inserted in the httpd file
Code:
LoadModule dav_module modules/mod_dav.so![]() |
Re: Portable Windriver
recopy mod_dav_svn.so to the modules dir from the svn dir. if that does not work, reinstall subversion (existing repositories will be kept)
EDIT: and of course, re-copy it |
Re: Portable Windriver
I tried what you said and made sure i install subversion with apache 2.2.x I also double checked that both .so files were in both locations. This is the error that I am getting now.
![]() |
Re: Portable Windriver
could you post the last 30 or so lines from (apache)/logs/error.log?
|
Re: Portable Windriver
Code:
Starting the Apache2.2 service |
Re: Portable Windriver
hmm,
your httpd.conf looks like this (at the end)? #make sure its /svn not /svn/ <Location /svn> DAV svn SVNListParentPath on #same here, also remove the /**/ comment SVNParentPath C:/Repositories </Location> restart the server, and tell me if it works now |
Re: Portable Windriver
thanks a lot, that finally worked, so now i can access the repo from a remote location by using the server computer address correct?
|
Re: Portable Windriver
yes, on the network, (if your ip is 192.168.1.103 (use ipconfig))
file>new project: SVN+new project from svn: http://192.168.1.103/svn OK Over the internet, you need to configure the router to send port 80 traffic to the computer that has the repos on it, then google what is my ip, and click teh first result, and (pretending it is 72.123.852.95) you would enter in the new repos location box http://72.123.852.95/svn I would look at the help on it to (in the help menu, and google svn book) learn about commiting, updating and stuff |
| All times are GMT -5. The time now is 12:18. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi