Welcome to the Linux Foundation Forum!
Installing from desktop on Red Hat Linux
ImmortalMatrixology
Posts: 10
Hello there guys. This rookie seems to be getting the hang of Linux. Now, just one more help from the last one. I have some applications(SugarCE-5.2.0f.zip, jbpm-4.0.CR1.zip, bugzilla-3.2.3.tar.gz) on my desktop, just to name a few...I know how to install but have not installed applications that are already on my desktop before.
Anyone wana give me a dummy assistance with this one.
Thank you in advance and for the assistance before this one.
0
Comments
-
For Sugar, see this howto. It is Ubuntu-oriented, but here is the meat of it, tailored to RH. Do this in a terminal:
su - mkdir /var/www/html/sugarcrm cd /tmp wget http://www.sugarforge.org/frs/download.php/5597/SugarCE-5.2.0f.zip unzip SugarCE-5.2.0f.zip cd SugarCE-Full-5.2.0f/ mv * /var/www/html/sugarcrm/ chown -R apache:apache /var/www/html/sugarcrm service httpd restart
If there is a line break inserted in the URL in the wget line above, here's the link: link
After you've done those steps, open a web browser, and go to http:// localhost/sugarcrm
To access files on your desktop, from a terminal, look for them in $HOME/Desktop.
E.g.,[joeblow@mybox ~]$ cd $HOME [joeblow@mybox ~]$ pwd /home/joeblow [joeblow@mybox ~]$ cd Desktop [joeblow@mybox ~/Desktop]$ pwd /home/joeblow/Desktop [joeblow@mybox ~/Desktop]$ ls bugzilla-1.2.3.tar.gz someapp.tar.gz
0 -
I like the lay out of thes web sight and as a ref to this topic the format of this web page could become a standard for information management from event oganizing to company personel administration (get the word out) It could be used to organize classes and a course schedule for school and assignments . . its summer though so I'm just setting up my tee.0
-
Thank you very much for your help..I have downloaded the zip file, but I can not seem to be able to unzip it. It says it can not find the file.
Resolving www.sugarforge.org... 70.42.242.70
Connecting to www.sugarforge.org|70.42.242.70|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://dl.sugarforge.org/sugarcrm/Latest-SugarCE5.2/SugarCE5.2.0/SugarCE-5.2.0f.zip [following]
--11:55:04-- http://dl.sugarforge.org/sugarcrm/Latest-SugarCE5.2/SugarCE5.2.0/SugarCE-5.2.0f.zip
=> `SugarCE-5.2.0f.zip'
Resolving dl.sugarforge.org... 70.42.242.70
Reusing existing connection to www.sugarforge.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 14,544,718 (14M) [application/zip]
100%[====================================>] 14,544,718 22.07K/s ETA 00:00
12:00:32 (43.69 KB/s) - `SugarCE-5.2.0f.zip' saved [14544718/14544718]
[root@REMSSVR tmp]# unzip SugarCE-5.2.Of.zip
unzip: cannot find or open SugarCE-5.2.Of.zip, SugarCE-5.2.Of.zip.zip or SugarCE-5.2.Of.zip.ZIP.
[root@REMSSVR tmp]# unzip SugarCE-5.2.Of.zip cd SugarCE-Full-5.2.Of/
unzip: cannot find or open SugarCE-5.2.Of.zip, SugarCE-5.2.Of.zip.zip or SugarCE-5.2.Of.zip.ZIP.
[root@REMSSVR tmp]# unzip SugarCE-5.2.Of.zip
unzip: cannot find or open SugarCE-5.2.Of.zip, SugarCE-5.2.Of.zip.zip or SugarCE-5.2.Of.zip.ZIP.
[root@REMSSVR tmp]#0 -
Is there a simpler way to do this..I mean, installing straight from desktop.....Now I know how to install going through a website, but what if I already have this software on my desktop already and want to install it from there......
That would be simple enough.
Thank you guys0 -
ImmortalMatrixology wrote:
I believe you a not using the right file name when running the unzip command. See the last part of the wget command here:12:00:32 (43.69 KB/s) - `SugarCE-5.2.0f.zip' saved [14544718/14544718]
Now see your unzip command here:
It appears that you are using a capital O (O), intead of a zero (0) in the filename.[root@REMSSVR tmp]# unzip SugarCE-5.2.Of.zip
unzip: cannot find or open SugarCE-5.2.Of.zip, SugarCE-5.2.Of.zip.zip or SugarCE-5.2.Of.zip.ZIP.
To remove doubt, copy and paste the filename right from the wget comand that you ran. Or copy and paste this command and see if it works:unzip SugarCE-5.2.0f.zip
Or, just type "unzip S" in your teminal, then hit the tab key and the full name (SugarCE-5.2.0f.zip) should "autocomplete" for you.0 -
ImmortalMatrixology wrote:
If you're talking about point-and-click InstallShield type of thing, well that depends on how the vendor decides to package their software. Some Linux applications do come like that, but that is typically rare. If you are dealing with a binary software package in RPM / DEB format on a Fedora / Ubuntu box, or some similar tandem, then there is usually a desktop GUI tool that will assist you with installing software that exists in a repository for that distribution. But if you're dealing with software that you have to compile from source, or that does not have an install GUI built for it, then you must get your feet wet in the terminal.Is there a simpler way to do this..I mean, installing straight from desktop.....Now I know how to install going through a website, but what if I already have this software on my desktop already and want to install it from there......
That would be simple enough.
Thank you guys
As far as software you already have on your desktop, the only new step I added was the wget command. And I only added that to remove any doubt about the file you were downloading. You could just as easily have done:unzip /home/USERNAME/Desktop/SugarCE-5.2.0f.zip
or similar.0 -
You are theeee man...Its working.
Now I am here...
[root@REMSSVR tmp]# cd SugarCE-Full-5.2.0f/
[root@REMSSVR SugarCE-Full-5.2.0f]# mv * /var/www/html/sugarcrm
[root@REMSSVR SugarCE-Full-5.2.0f]# chown -R apache:apache /var/www/html/sugarcrm
[root@REMSSVR SugarCE-Full-5.2.0f]# service httpd restart
Stopping httpd: [FAILED]
Starting httpd: [ OK ]
[root@REMSSVR SugarCE-Full-5.2.0f]#
Its unzupped and now I am not sure if the installation is complete....
Anything else that I need to do to be able to access the application SugarCRM??
You guys are being very helpful thank you a million times more0 -
Replying to this......
Code:
 
su - 
mkdir /var/www/html/sugarcrm 
cd /tmp 
wget http://www.sugarforge.org/frs/download.php/5597/SugarCE-5.2.0f.zip 
unzip SugarCE-5.2.0f.zip 
cd SugarCE-Full-5.2.0f/ 
mv * /var/www/html/sugarcrm/ 
chown -R apache:apache /var/www/html/sugarcrm 
service httpd restart 
After you've done those steps, open a web browser, and go to http:// localhost/sugarcrm
To access files on your desktop, from a terminal, look for them in $HOME/Desktop.
When I run the http://localhost/sugarcrm....It says, page can not be found...What did I do wrong??0
Categories
- All Categories
- 175 LFX Mentorship
- 175 LFX Mentorship: Linux Kernel
- 745 Linux Foundation IT Professional Programs
- 372 Cloud Engineer IT Professional Program
- 168 Advanced Cloud Engineer IT Professional Program
- 73 DevOps IT Professional Program - Discontinued
- 3 DevOps & GitOps IT Professional Program
- 98 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- AI & ML Training
- Blockchain & Decentralized Identity Training
- 1 Cloud & Containers Training
- Cybersecurity Training
- DevOps & Site-Reliability Training
- Linux Kernel Development Training
- Networking Training
- Open Source Best Practice Training
- System Administration Training
- System Engineering Training
- Web & Application Development Training
- 2 LFD103-JP クラス フォーラム
- 4 LFD210-CN Class Forum
- 764 LFD259 Class Forum
- 681 LFS101 Class Forum
- 2 LFS158-JP クラス フォーラム
- 162 LFS207 Class Forum
- 3 LFS207-DE-Klassenforum
- 4 LFS207-JP クラス フォーラム
- 61 LFS241 Class Forum
- 52 LFS242 Class Forum
- 42 LFS243 Class Forum
- 19 LFS244 Class Forum
- 4 LFS250-JP クラス フォーラム
- 166 LFS253 Class Forum
- 1.4K LFS258 Class Forum
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 768 Linux Distributions
- 81 Debian
- 67 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 106 Mobile Computing
- 18 Android
- 73 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 946 Programming and Development
- 310 Kernel Development
- 618 Software Development
- 979 Software
- 371 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)