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.,[[email protected] ~]$ cd $HOME [[email protected] ~]$ pwd /home/joeblow [[email protected] ~]$ cd Desktop [[email protected] ~/Desktop]$ pwd /home/joeblow/Desktop [[email protected] ~/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]
[[email protected] 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.
[[email protected] 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.
[[email protected] 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.
[[email protected] 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:[[email protected] 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: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...
[[email protected] tmp]# cd SugarCE-Full-5.2.0f/
[[email protected] SugarCE-Full-5.2.0f]# mv * /var/www/html/sugarcrm
[[email protected] SugarCE-Full-5.2.0f]# chown -R apache:apache /var/www/html/sugarcrm
[[email protected] SugarCE-Full-5.2.0f]# service httpd restart
Stopping httpd: [FAILED]
Starting httpd: [ OK ]
[[email protected] 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
- 9.9K All Categories
- 29 LFX Mentorship
- 82 LFX Mentorship: Linux Kernel
- 465 Linux Foundation Boot Camps
- 266 Cloud Engineer Boot Camp
- 94 Advanced Cloud Engineer Boot Camp
- 43 DevOps Engineer Boot Camp
- 29 Cloud Native Developer Boot Camp
- 1 Express Training Courses
- 1 Express Courses - Discussion Forum
- 1.6K Training Courses
- 18 LFC110 Class Forum
- 4 LFC131 Class Forum
- 19 LFD102 Class Forum
- 132 LFD103 Class Forum
- 9 LFD121 Class Forum
- 60 LFD201 Class Forum
- LFD210 Class Forum
- 1 LFD213 Class Forum - Discontinued
- 128 LFD232 Class Forum
- 23 LFD254 Class Forum
- 544 LFD259 Class Forum
- 100 LFD272 Class Forum
- 1 LFD272-JP クラス フォーラム
- 1 LFS145 Class Forum
- 20 LFS200 Class Forum
- 739 LFS201 Class Forum
- 1 LFS201-JP クラス フォーラム
- 1 LFS203 Class Forum
- 36 LFS207 Class Forum
- 295 LFS211 Class Forum
- 53 LFS216 Class Forum
- 45 LFS241 Class Forum
- 39 LFS242 Class Forum
- 33 LFS243 Class Forum
- 10 LFS244 Class Forum
- 27 LFS250 Class Forum
- 1 LFS250-JP クラス フォーラム
- 131 LFS253 Class Forum
- 964 LFS258 Class Forum
- 10 LFS258-JP クラス フォーラム
- 85 LFS260 Class Forum
- 124 LFS261 Class Forum
- 29 LFS262 Class Forum
- 78 LFS263 Class Forum
- 15 LFS264 Class Forum
- 10 LFS266 Class Forum
- 17 LFS267 Class Forum
- 16 LFS268 Class Forum
- 14 LFS269 Class Forum
- 194 LFS272 Class Forum
- 1 LFS272-JP クラス フォーラム
- 206 LFW211 Class Forum
- 148 LFW212 Class Forum
- 890 Hardware
- 212 Drivers
- 74 I/O Devices
- 44 Monitors
- 115 Multimedia
- 206 Networking
- 99 Printers & Scanners
- 85 Storage
- 747 Linux Distributions
- 88 Debian
- 64 Fedora
- 13 Linux Mint
- 13 Mageia
- 24 openSUSE
- 133 Red Hat Enterprise
- 33 Slackware
- 13 SUSE Enterprise
- 354 Ubuntu
- 468 Linux System Administration
- 38 Cloud Computing
- 67 Command Line/Scripting
- Github systems admin projects
- 93 Linux Security
- 77 Network Management
- 107 System Management
- 48 Web Management
- 61 Mobile Computing
- 22 Android
- 25 Development
- 1.2K New to Linux
- 1.1K Getting Started with Linux
- 525 Off Topic
- 127 Introductions
- 211 Small Talk
- 19 Study Material
- 782 Programming and Development
- 256 Kernel Development
- 492 Software Development
- 919 Software
- 255 Applications
- 181 Command Line
- 2 Compiling/Installing
- 76 Games
- 316 Installation
- 46 All In Program
- 46 All In 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)