Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
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.
i am trying to install flash for ubuntu from this link http://www.adobe.com/shockwave/downl...ShockwaveFlash
i download the tar.gz file and extract it to the desktop. On adobes guide they say to navigate to the file in the termenal and then type ./flashplayer-installer
but i do not know how to navigate to the directory in the terminal, please help
ok, looks like this is your first lesson on how to use a linux console.
First of all, obviously, open a terminal window.
Your first lesson in navigating within a terminal is the cd command - this allows you to move to different directories (or "folders" if you like) within file systems.
Type the following command: cd ~
this should take you to your home directory. the "~" symbol is used as a shorthand for "/home/your_user_name/"
If this fails, type cd /home/your_user_name
You now should be within your home directory.
now type cd desktop or cd Desktop - remember, Linux is case sensitive.... "desktop" and "Desktop" are completely different due to the capital or lower case "d". I use SUSE - it uses a capital "d" for the desktop directory.... other distributions such as Ubuntu may use a lower case "d".
Now, you need to know the name of the directory you extracted the files to. You can look at your desktop, or type dir which will show you all the files and directories within the current location.
Once you know the name, type cd flash_directory_name.
This should now have you in the appropriate directory and ready to type ./flashplayer-installer
Note that all the above cd commands can be merged into one line: cd ~/desktop/flash_directory_name
or cd /home/your_user_name/desktop/flash_directory_name
Hope this helps you somewhat... if you have any troubles, post a reply back and I'll be happy to help you more.
It's a flashplayer for the browser? If I remember correctly, the last time I installed it on a Dapper box, I simply clicked the icon in the page and it worked. If that's not the solution, you can use EasyUbuntu to install it.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.