Results 1 to 6 of 6
Hi everyone,
I downloaded a game called DeachChase 3D. It came in the .tar.gz format and I am trying to install it.
I successfuly unpackaged it, configured it, and got ...
- 12-12-2006 #1Just Joined!
- Join Date
- Nov 2006
- Location
- ~/
- Posts
- 40
Trouble compiling and installing a game
Hi everyone,
I downloaded a game called DeachChase 3D. It came in the .tar.gz format and I am trying to install it.
I successfuly unpackaged it, configured it, and got up to the final step, installing it.
I have gotten no errors untill now. When I try to run the command, I get this:
It doesn't recognize my password. I did it many times and I typed it correctly. I usually use sudo to run as a super user, but never su. I'm not sure what's going on. This happens when I try to install other games as well.Code:mattmodica@Stargate:~/deathchase3d-0.9$ su -c 'make install' Password: su: Authentication failure Sorry. mattmodica@Stargate:~/deathchase3d-0.9$
Any help would be greatly appreciated.
Thanks,
BigFoot
- 12-12-2006 #2
Go ahead and use sudo. It's essentially the same as su -c. Except this time you won't need the quotes around the command. Just try something like this:
Code:$sudo make install
- 12-13-2006 #3Just Joined!
- Join Date
- Nov 2006
- Location
- ~/
- Posts
- 40
Thanks, that worked.
- 12-13-2006 #4Just Joined!
- Join Date
- Dec 2006
- Location
- Virginia
- Posts
- 5
The reason
The reason su didn't work is probably because you were using your user password instead of the root password (pressuming they are different.) SUDO accepts the password of the user making the call, SU accepts the password of the target user.
eg.:
You have two users: one root with password 'root' and one 'User1' with password 'pass.' You log on as User1. To switch to root with SUDO you'd use the password 'pass.' To do the same thing with SU you'd use 'root.'
effectively:
sudo [command]
password:pass
or
su -c '[command]'
password:root
Tell me if this is what what was going on. You seem to have solved your problem, but I'm curious to see if I'm correct about this.
- 12-13-2006 #5
The reason su doesn't work on KUbuntu (or Ubunut, XUbuntu, etc) is that Ubuntu disables the root account by default. You cannot use "su" unless you manually set the root password.
https://help.ubuntu.com/community/RootSudoRegistered Linux user #270181
TechieMoe's Tech Rants
- 12-13-2006 #6Just Joined!
- Join Date
- Nov 2006
- Location
- ~/
- Posts
- 40
OK, thanks guys for the info.


Reply With Quote
