I have installed redhat 7.2 (server and coustom option) but I have found that rpm command is not working so I dont have any idea to how to enable it ! please suggest something
Thanks
__________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com
--- Hiten Desai linuxbrd@yahoo.com wrote:
I have installed redhat 7.2 (server and coustom option)
Can you do that?
rpm command is not working so I dont have any idea
Exactly what options did you use and what was the output? Were you logged in as root?
SameerDS.
===== -- MTech Student Reconfigurable Computing Lab KReSIT, IIT-Bombay
__________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com
--- Hiten Desai linuxbrd@yahoo.com wrote:
I have installed redhat 7.2 (server and coustom option) but I have found that rpm command is not working so I dont have any idea
[snip] mr lugger........:) nice to have u on board..... btw, can u pliss describe wats wrong with the rom command. It's not lke u give the rpm command and a GUI whizzes out on the screen with dialogs flying back n forth....
Pliss thrown more light on wat doesnt work and if there r ny error messages that is being thrown up on the screen. Only then will we be able to help u out much more.
As of now....do a bash# man rpm nd read the docs....
Trevor Warren
to how to enable it ! please suggest something
Thanks
===== ( >- LINUX, It's all about CHOICE -< ) /~\ __ http://www.qmailtheeasyway.com __ /~\ | ) / mailto: trevorwarren@yahoo.com \ (/ | |_|_ \ Urgent ->9820349221@maxtouch.co.in / _|_| ___________________________________/
__________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com
Hi! when I type
#rpm
it says command not found
and when I type
#man rpm
it says no manual entry for rpm it happens in server installation as well as coustom install please throw some light on this
Hiten.
As of now....do a bash# man rpm nd read the docs....
Trevor Warren
to how to enable it ! please suggest something
Thanks
===== ( >- LINUX, It's all about CHOICE -< ) /~\ __ http://www.qmailtheeasyway.com __ /~\ | ) / mailto: trevorwarren@yahoo.com \ (/ | |_|_ \ Urgent ->9820349221@maxtouch.co.in / _|_| ___________________________________/
Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com _______________________________________________ http://mm.ilug-bom.org.in/mailman/listinfo/linuxers
__________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com
On Wed, 30 Jan 2002, Hiten Desai wrote:
#rpm it says command not found
and when I type
#man rpm it says no manual entry for rpm
check where your rpm command is. It is usually in /bin. do ls -l /bin/rpm to make sure. Check if you have /var/lib/rpm
--- Philip S Tellis philip.tellis@iname.com wrote:
On Wed, 30 Jan 2002, Hiten Desai wrote: check where your rpm command is. It is usually in /bin. do ls -l /bin/rpm to make sure. Check if you have /var/lib/rpm
[snip] This is a bit strange dude...... since there'z no way there can't be the RPM package installed since if u usin RH based distros there has to RPM's installed for all the apps u hav.
Most probably it's the path issue......guess wat philip sayz should put u on the right track.
Lets us know if this helps out......
Trevor Warren
-- He's like a function -- he returns a value, in the form of his opinion. It's up to you to cast it into a void or not. -- Phil Lapsley
===== ( >- LINUX, It's all about CHOICE -< ) /~\ __ http://www.qmailtheeasyway.com __ /~\ | ) / mailto: trevorwarren@yahoo.com \ (/ | |_|_ \ Urgent ->9820349221@maxtouch.co.in / _|_| ___________________________________/
__________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com
hi,
i couldn't execute c and c++ program.
when i type for c++ program g++ test.cpp a.out is created but i can not able to execute with typing a or a.out.so tell me how to execute and see output.
bye
__________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com
Set the file permission to execute
chmod u=rwx, go=rx a.out or chmod 755 a.out
and run the file by sepcifing the path of the file if u are in the same directory where the file is type ./a.out
regards lilo ----- Original Message ----- From: ketan shah coolketone@yahoo.com To: linuxers@mm.ilug-bom.org.in Sent: Wednesday, January 30, 2002 11:55 PM Subject: [ILUG-BOM] c++ execute problem
hi,
i couldn't execute c and c++ program.
when i type for c++ program g++ test.cpp a.out is created but i can not able to execute with typing a or a.out.so tell me how to execute and see output.
bye
Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com _______________________________________________ http://mm.ilug-bom.org.in/mailman/listinfo/linuxers
On Wed, 2002-01-30 at 23:55, ketan shah wrote:
a.out is created but i can not able to execute with typing a or a.out.so tell me how to execute and see output.
your current directory is not in your path. Execute as
./a.out
regards