Results 1 to 10 of 10
I downloaded REALbasic and uncompressed it to the desktop. When I tried moving the folder to "Applications/Development Tools" it gave an error saying I can't do that.
So where do ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 11-22-2007 #1
Where does software go?
I downloaded REALbasic and uncompressed it to the desktop. When I tried moving the folder to "Applications/Development Tools" it gave an error saying I can't do that.
So where do I put software? I don't want to have to create a folder on my desktop for all my downloaded software. There are so many confusing named folders on Linux and since I am new I don't know where to put anything so that I can easily find it again.
Thanks in advance for your help.
- 11-22-2007 #2
- 11-22-2007 #3
So how do I make it show up in the desktop menu under applications?
- 11-22-2007 #4
- 11-22-2007 #5
- 11-22-2007 #6
- 11-22-2007 #7
You have to be the Admin to write in that folder.
if you do "whoami" in a terminal you find out who you are.
If you arnt root you cant write in the system folders.
to become root do "su" or if you want to do one single action as root you can do "su root -c "ACTION"" or "sudo ACTION"
Tip: NEVER stay logged in as root.
Stay root as short as posible.
- 11-22-2007 #8
Where software is located depends on what the package is. Take a look at the FHS if you need detailed info about the directory structure of Linux and other Unix like OSes.
As for RealBasic, if everything is in one directory, then you need to copy that directory to /opt e.g.
You will need to enter roots password. To start realbasic, you can create a shortcut to the command or create a menu entry for it. The command would be something like /opt/RealBasic/somecommand.Code:$su -c "cp -r RealBasic /opt/."
- 11-22-2007 #9
- 11-22-2007 #10Interesting point of view. Regularly logging in as root defeats the whole unix security model. Root has the power to do anything on the system. With this power also comes great responsibility and any slight error can leave you with a broken system. For example, one time I was working on a system and I wanted to permanently delete a folder somewhere in /usr/local and I accidently enter "/ usr/local" as part of the path name. Lucky enough I saw what I had done a few seconds later, but I had already lost all the files in /bin and /boot so I had to reinstall. I could have lost all the data on my system and the filesystems that I had mounted from other systems. There are other reasons why you should minimise logging in as root and most are for security reasons.Also, why does everybody say to stay out of root when possible. What is wrong with that? I know it is a security issue, but come on, what can happen?


Reply With Quote

