LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 03-16-2010, 10:55 AM   #1
Covinas
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Rep: Reputation: 0
Unhappy Oracle Unbreakable - pcAnywhere


Hi Guys, this is probably my third day doing ANYTHING with a linux box. I am basically trying to install pcAnywhere from the terminal. I followed their directions and successfully got java downloaded and installed.

[root@callcenter1 ~]# java -version
java version "1.6.0_18"
Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
[root@callcenter1 ~]#

Now when i try to navigate to the folder on the cd to install the .jar file for pcAnywhere, i get the following.

[root@callcenter1 ~]# cd /media
[root@callcenter1 media]# ls
cdrom
[root@callcenter1 media]# cd cdrom
[root@callcenter1 cdrom]# ls
autorun.inf Setup.exe Symantec pcAnywhere CrossPlatform Tools
Bin Setup.ini Symantec pcAnywhere Gateway
Docs SetupLinuxMac Symantec pcAnywhere Mobile
README.TXT Symantec pcAnywhere Symantec pcAnywhere Web Remote
[root@callcenter1 cdrom]# cd Symantec pcAnywhere CrossPlatform
bash: cd: Symantec: No such file or directory
[root@callcenter1 cdrom]# cd Symantec pcAnywhere CrossPlatform Tools
bash: cd: Symantec: No such file or directory
[root@callcenter1 cdrom]# java -jar SetupLinuxMac.jar
Unable to access jarfile SetupLinuxMac.jar
[root@callcenter1 cdrom]#

Forgive me for being a total noob and not even being able to change a directory /facepalm

I also found the file throught he file browser and right clicked it/open with java, it gets all the way through the installation and then i get an error that says JVM not found.

What the heck am i doing wrong????
 
Old 03-16-2010, 11:08 AM   #2
smoker
Senior Member
 
Registered: Oct 2004
Distribution: Fedora Core 4, 12, 13, 14, 15, 17
Posts: 2,279

Rep: Reputation: 250Reputation: 250Reputation: 250
What does ls -l say from /mnt/media/cdrom

If there are spaces in the name, you have to quote the name.
eg.
cd "Symantec pcAnywhere CrossPlatform Tools"

But I expect all those are separate directories.
 
Old 03-16-2010, 11:10 AM   #3
jamescondron
Member
 
Registered: Jul 2007
Location: Scunthorpe, UK
Distribution: Ubuntu 8.10; Gentoo; Debian Lenny
Posts: 961

Rep: Reputation: 70
First consider whether you actually need PcAnywhere; you'll probably find you don't, and that perhaps you're looking at this as if it were Windows, not Linux.

Now, if you look at some of the cd commands, they're erroring. This is because filenames/ directory names cannot have spaces in, or at least shouldn't. If they do you either need to do what is known in the programming world (and by extension in the computing world) as escaping. Try:

Code:
cd Symantec\ pcAnywhere\ CrossPlatform/
or
Code:
cd "Symantec pcAnywhere CrossPlatform"/
Notice the top one puts a backslash in front of the spaces, and the second encompasses in "" instead.

But thats alright, we've all done in.

But yes, what exactly are you hoping to use pcAnywhere for? Where are the two computers relative to one another? This sort of thing is built in, you know, to Linux. No need to pay or anything
 
Old 03-16-2010, 11:35 AM   #4
Covinas
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Original Poster
Rep: Reputation: 0
hooray, i was missing some " and a / at the end of the command. Now, when i run the java -jar SetupLinuxMac.jar command i get "Could not create java virtual machine" error... Think i need to reinstall java???
 
Old 03-16-2010, 11:42 AM   #5
dsmyth
LQ Newbie
 
Registered: Mar 2010
Location: Glasgow, Scotland
Distribution: Fedora 12
Posts: 26
Blog Entries: 6

Rep: Reputation: 17
took me a week to learn that /media folder contained the cdrom. so you know....

top tip, be-friend the tab key!! pressing tab autocompletes stuff for you. really handy for files and folders with spaces in it. if you type

Code:
cd Syma<Then Press Tab>
it will autocomplete the input for you and will escape the spaces!!. if you wrap in single quotes its a little better...

Code:
cd 'Syma<Then Press Tab>
becomes

Code:
cd 'Symantec have you now.'
If you can't remember the name of a command or if there are many matches then press Tab twice and it will show you the options.

Tab is brilliant. I learned that soon enough.

Last edited by dsmyth; 03-16-2010 at 11:44 AM.
 
Old 03-16-2010, 11:53 AM   #6
smoker
Senior Member
 
Registered: Oct 2004
Distribution: Fedora Core 4, 12, 13, 14, 15, 17
Posts: 2,279

Rep: Reputation: 250Reputation: 250Reputation: 250
Try specifying the path to java in the command

eg.
/usr/bin/java -jar SetupLinuxMac.jar
 
Old 03-16-2010, 12:29 PM   #7
Covinas
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Original Poster
Rep: Reputation: 0
you guys are all my friggin hero's. The Tab thing in Terminal helps out TONS...... Now, I got the installation package to pop up but it gets to about 73% then i get an error message saying JVM not found.
 
Old 03-16-2010, 12:44 PM   #8
jamescondron
Member
 
Registered: Jul 2007
Location: Scunthorpe, UK
Distribution: Ubuntu 8.10; Gentoo; Debian Lenny
Posts: 961

Rep: Reputation: 70
Perhaps you could answer my question. Are you sure this is what you need? You have *all* the software you need for pcAnywhere already installed, if not in a position where it can be installed far simpler and quicker than this
 
Old 03-16-2010, 12:46 PM   #9
smoker
Senior Member
 
Registered: Oct 2004
Distribution: Fedora Core 4, 12, 13, 14, 15, 17
Posts: 2,279

Rep: Reputation: 250Reputation: 250Reputation: 250
Is java in your path ?
http://www.cyberciti.biz/faq/linux-u...path-variable/
 
Old 03-16-2010, 12:51 PM   #10
Covinas
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by jamescondron View Post
Perhaps you could answer my question. Are you sure this is what you need? You have *all* the software you need for pcAnywhere already installed, if not in a position where it can be installed far simpler and quicker than this
I'm not exactly sure what you are asking. Do i "Need" pcAnywhere on this machine, well no, i'm sure there are other apps that can be used with the same functionality. Our server envirnment is 80% windows 2k, 20%Linux. We just installed 7 new servers that require linux to operate our new software. We need to have some sort of remote access capability. It just seems easier to connect remotely to 100% of the network via pcanywhere rather than 80% pcAnywhere and 20% some other applicaton.
 
Old 03-16-2010, 12:55 PM   #11
jamescondron
Member
 
Registered: Jul 2007
Location: Scunthorpe, UK
Distribution: Ubuntu 8.10; Gentoo; Debian Lenny
Posts: 961

Rep: Reputation: 70
Okay, okay, you're going about this all wrong. If that is the case you only want SSH; SSH is the heir apparent to Telnet, if you remember using that. SSH has a far better authentication and encryption base than Telnet and is the industry standard.

It is also already installed for you, or so I would assume; its rare not to find SSH installed.
 
Old 03-16-2010, 01:59 PM   #12
RaelOM
Member
 
Registered: Dec 2004
Posts: 110

Rep: Reputation: 16
Yea, don't subscribe to the "One Ring" theory of IT tools. You'll just cause more trouble than you're trying to solve.

Download putty and connect via ssh to your OEL installation. You probably won't be able to login through ssh as root initially since /etc/ssh/sshd.conf is set to PermitRootLogin no by default often. So you'll have to connect as a regular user you've defined through useradd command.

You'll also want to likely get Exceed or Cygwin installed for X11 emulation on your desktop for whenever you need to install Oracle stuff. Unless you're proficient in silent installs and response files Oracle almost always launches an X11 window.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Oracle Preparing Unbreakable MySQL? LXer Syndicated Linux News 0 10-20-2009 03:21 AM
LXer: CDW to Sell Oracle Unbreakable Linux Support LXer Syndicated Linux News 0 11-18-2007 12:10 PM
Problem with Oracle Unbreakable media kit sundar22in Red Hat 1 08-24-2007 09:06 AM
LXer: Oracle names 26 Unbreakable Linux customers LXer Syndicated Linux News 0 03-30-2007 08:17 PM
Oracle Unbreakable Linux Support vs RedHat rld1025 Linux - General 4 01-08-2007 08:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration