11-21-2006, 04:17 PM,
|
|
Footix
Junior Member
|
Posts: 9
Threads: 1
Joined: Nov 2006
|
|
Mutual dependency - can't install
I'm trying to install under Ubuntu (specifically, Dapper). When I try to install the main VDrift package, it reports that it needs vdrift-data, but when I try to install vdrift-data, it refuses to install and reports that it needs vdrift! Can someone help me, bearing in mind I'm a Linux n00b?
|
|
11-21-2006, 04:30 PM,
|
|
Footix
Junior Member
|
Posts: 9
Threads: 1
Joined: Nov 2006
|
|
I got them from http://vdrift.net/article.php/vdrift-200...ntu-breezy - that's the first result for +ubuntu +vdrift in Google.
|
|
11-21-2006, 04:44 PM,
|
|
thelusiv
Administrator
|
Posts: 2,346
Threads: 223
Joined: Jun 2005
|
|
Alright, that version is pretty old. You can use the 2006-10-06 version, just download the .deb file from sourceforge on our downloads page. Then, to install it:
Code: sudo dpkg -i vdrift-data_0.0.2006.10.06-1_all.deb
|
|
11-22-2006, 11:59 AM,
|
|
Footix
Junior Member
|
Posts: 9
Threads: 1
Joined: Nov 2006
|
|
OK, I've got that installed, now what? (Again, you're dealing with a Linux n00b here )
|
|
11-22-2006, 01:06 PM,
|
|
Footix
Junior Member
|
Posts: 9
Threads: 1
Joined: Nov 2006
|
|
When I try that, I get:
Code: bash: vdrift: command not found
and there's no menu entry.
|
|
11-22-2006, 02:39 PM,
|
|
Footix
Junior Member
|
Posts: 9
Threads: 1
Joined: Nov 2006
|
|
There's no output for which vdrift.
|
|
11-23-2006, 08:43 AM,
|
|
Nigo
Member
|
Posts: 118
Threads: 9
Joined: Jun 2006
|
|
hum... are you guys sure this deb file contains the binary, or just the data ?
"locate vdrift" should work under Ubuntu (it's just faster than the find command above)
|
|
11-23-2006, 10:58 AM,
|
|
reece146
Member
|
Posts: 187
Threads: 26
Joined: Oct 2006
|
|
cotharyus Wrote:true, since so much time has passed since it was installed. On most flavors of unix it updates the locate database once a day, so sometimes right after an install, locate won't provide any information.
Correct. And `which` only works for binaries in your $PATH.
`find / -name vdrift -print` should "find" it.
|
|
11-23-2006, 01:42 PM,
|
|
Footix
Junior Member
|
Posts: 9
Threads: 1
Joined: Nov 2006
|
|
`find / -name vdrift -print` returns a bunch of listings like this:
Code: find: /proc/4515/task/4515/fd: Permission denied
find: /proc/4515/fd: Permission denied
and then
Code: bash: /usr/share/games/vdrift: is a directory
|
|
11-23-2006, 01:59 PM,
|
|
reece146
Member
|
Posts: 187
Threads: 26
Joined: Oct 2006
|
|
Footix Wrote:`find / -name vdrift -print` returns a bunch of listings like this:
Code: find: /proc/4515/task/4515/fd: Permission denied
find: /proc/4515/fd: Permission denied
and then
Code: bash: /usr/share/games/vdrift: is a directory
Ok, so you are doing this as a non-root user. Good job.
Now, I've never installed vdrift under Linux but I'd expect that if you
Code: cd /usr/share/games/vdrift
and then
that'll get you up an running.
|
|
|