Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I have to admit a pride at using Linux but a feeling that I am just not clever enough for it.
I tried my first game download of Danger from the Deep and just did not know what to do with it. Open it with what? I finally gave and put the download in the trash. It MAY be that linux is just not helpful enough.
The site you downloaded the game from should have explained how to install and/or run it. Unfortunately it appears that in this case it DOESN'T. That is an oversight of the game's developers.
Usually, if you understand what type of file it is you will know how to proceed. What type of file was is? If, you do not know, what was the file name? That should tell you.
Failing that, you can use the "file" command to tell you what type of file it is.
Code:
file mysteryfiletype
Where "mysteryfiletype" is the file in the current directory.
If you downloaded the linux installer, dangerdeep-0.3.0-linux-installer.bin, then you simply run the file (with root privileges) like this:
sudo ./dangerdeep-0.3.0-linux-installer.bin
The 'sudo' command runs the program as root, the './' before the file name means that you are running the file from the current directory (the '.' means the current directory), and the rest is the file you are running. It should be all automatic from there. Don't try to install with any package managers in this case.
So to run the installer you may need to change its permissions,so navigate in a shell to where you have downloaded the file.
Then as root or using sudo:
chmod +x dangerdeep-0.3.0-linux-installer.bin
Then run the installer with:
./dangerdeep-0.3.0-linux-installer.bin
Edit:too slow again!!.
Last edited by the trooper; 01-11-2010 at 11:40 AM.
I very much appreciate the help but I think I need to learn more. I have very little experience with the command line. I've only used it for apt-get stuff so far. I'm a little nervous about tinkering around behind the curtains for fear of creating a problem. I've searched but not found a good command line basic tutorial. If anyone knows of one, I should probably start there.
I very much appreciate the help but I think I need to learn more. I have very little experience with the command line. I've only used it for apt-get stuff so far. I'm a little nervous about tinkering around behind the curtains for fear of creating a problem. I've searched but not found a good command line basic tutorial. If anyone knows of one, I should probably start there.
You're missing out on the primary awesome-ness of Linux unless you get stuck into the command line
Thanks again the help. LOTS of good reading done and more to do. Beginning to understand about having to change files and permissions, etc. I'm a little less afraid of the command line. I guess if you really don't know what you're doing, it's pretty hard to screw anything up.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.