LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This 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


Reply
  Search this Thread
Old 12-31-2004, 09:20 PM   #1
nisson
LQ Newbie
 
Registered: Aug 2004
Posts: 17

Rep: Reputation: 0
How to edit the ps figure in linux


Hello, everyone.

Did you know how to edit the ps figures in linux, like to
cut a part of the whole figure.

By the way, did you know any software that can convert *.ps file to
*.pdf with a high resolution.

Thanks! Happy new year.
 
Old 01-01-2005, 08:30 AM   #2
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
Hello and Happy new Year

I think Gimp can edit .ps files as it can edit .eps
To convert ps to pdf, I personnally use ps2pdf command

Oliv'
 
Old 01-01-2005, 12:33 PM   #3
mr2_dude78
LQ Newbie
 
Registered: Dec 2004
Posts: 6

Rep: Reputation: 0
Yea I agree with Oliv'. Also, try xfig, as an alternative.
 
Old 01-01-2005, 04:45 PM   #4
nisson
LQ Newbie
 
Registered: Aug 2004
Posts: 17

Original Poster
Rep: Reputation: 0
Thanks!
I want to download the gimp software.

I find it in http://packages.debian.org/testing/graphics/gimp.

I download the gimp_2.0.6-1_alpha.deb.
I do not know how to deal with it.

Do I need download other packages related to gimp?

Can you ask me the naive question.
 
Old 01-02-2005, 07:18 AM   #5
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
about your link: to run gimp correctly you must have all packages with "red point" installed... those with green point are only recommended . It means it can give you useful features. And the last with the blue point give you optionnal features.
But if you use Debian, just open a console as root and type:
Code:
apt-get install gimp
PS: most of "red packages" are already installed by default on your Debian

Oliv'
 
Old 01-02-2005, 01:35 PM   #6
nisson
LQ Newbie
 
Registered: Aug 2004
Posts: 17

Original Poster
Rep: Reputation: 0
Thanks, but
In my compute, the command(apt-get install gimp) is invalid.
 
Old 01-02-2005, 02:24 PM   #7
nisson
LQ Newbie
 
Registered: Aug 2004
Posts: 17

Original Poster
Rep: Reputation: 0
Additional question.

there are different types for downloading like alpha, arm, hppa et al.
What is its meaning. I think that I only download one of these types.
But I wonder if it depend on the computer, or others.

Thanks
 
Old 01-03-2005, 06:31 AM   #8
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
Quote:
In my compute, the command(apt-get install gimp) is invalid.
Do you have a Debian as Linux distro ???
Quote:
there are different types for downloading like alpha, arm, hppa et al.
it corresponds to the arch the soft was compiled for. For example if you have an ARM processor you'll download ARM package. But for normal user that's i386 package

Oliv'
 
Old 01-03-2005, 10:12 AM   #9
nisson
LQ Newbie
 
Registered: Aug 2004
Posts: 17

Original Poster
Rep: Reputation: 0
Quote,

Do you have a Debian as Linux distro ???
------------------------------------------------------
No,

How to get it. I need download additional software, or not.

Thanks!
 
Old 01-04-2005, 07:04 AM   #10
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
No,

In fact the link you provide is for Debian distro. The main difference between linux distro (Fedora, Mandrake, Debian, Suse, Slack...) is the way they manage package/software installation.
Debian uses .deb format and apt-get command, whereas Fedora or Mandrake uses .rpm format and rpm command to install software.
So I need to know the distro you use to tell you the easiest way to install software

Oliv'
 
Old 01-04-2005, 10:16 AM   #11
nisson
LQ Newbie
 
Registered: Aug 2004
Posts: 17

Original Poster
Rep: Reputation: 0
Thanks!

Which command can be used to find the distro in my computer?

Sorry for the simple question.
 
Old 01-04-2005, 12:50 PM   #12
shengchieh
Member
 
Registered: Jul 2004
Location: Palo Alto, CA
Distribution: #! Korora
Posts: 472

Rep: Reputation: 30
If you need postscript documentations, there' some in
my webpage,

http://www.websamba.com/Linux_Docs_Links

Scroll down 90+% to postscript. You could edit ps files
directly if you want.

Sheng-Chieh

p.s. The link for gimp is there too if you want to download the
"geeky" way and avoid apt-get.
 
Old 01-05-2005, 06:57 AM   #13
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
Quote:
Which command can be used to find the distro in my computer?
try to type in a console:
Code:
uname -a
it should give you info about your current distro

Oliv'
 
Old 01-05-2005, 09:58 AM   #14
nisson
LQ Newbie
 
Registered: Aug 2004
Posts: 17

Original Poster
Rep: Reputation: 0
Thanks!
Following is the information found by the command.

2.4.20-8smp #1 SMP Thu Mar 13 17:45:54 EST 2003 i68
6 i686 i386 GNU/Linux.
 
Old 01-06-2005, 07:10 AM   #15
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
So it seems (according to your kernel version) that you have a RedHat (maybe mandrake)... so your distro uses RPM format.
To be sure the distro you use, have a look at "/etc/release" or a file with a similar name...
Then once the distro precisely determined, go to: http://rpmfind.net/ an download Gimp
Then do as root:
Code:
rpm -ivh gimp-version-arch.rpm
to install it

Oliv'
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
it's happened when i install red hat linux 9,which i cann't figure out novmcgrady Linux - Hardware 8 03-28-2005 12:05 PM
Trying to figure out FTP on Linux z0331 Linux - Newbie 2 08-09-2004 05:52 PM
Cant Figure out how to install ma401 in Slack 9.1? im linux newb! metaphys Linux - Wireless Networking 8 07-27-2004 03:39 PM
Network configuration in vector linux, can't figure it out. ooagentbender Linux - Newbie 2 12-30-2003 05:04 AM
How to edit .Xclients in RH Linux 7.2 sceadu Linux - Software 5 05-21-2003 09:22 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:29 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