- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- visualize box and cdrecord
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2001 09:49 AM
09-06-2001 09:49 AM
visualize box and cdrecord
# make
Bad character | (octal 174), line 38Make: . Stop.
#
neat huh? Anyone seen this / have a clue? or better yet, can i bypass this and find a binary package of cdrecord?
Thx alot folks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2001 01:19 PM
09-06-2001 01:19 PM
Re: visualize box and cdrecord
I just downloaded and took a look at this myself. I'll have to agree that the package is not inutitive to build.
Take a look at README.compile. Basically, either get the "smake" that is recommended, or GNU make.
(You can get GNU make from http://devresource.hp.com)
I had gmake, but had it named make.gnu. I created a symlink to it as "gmake", other wise the RULES/mk-gmake.id would not load.
I then ran:
gmake CCOM=cc
and cdrecord and it's utilities seemed to build OK.
Also, don't forget to run the "MKNOD.hpux" script to create the device files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 05:17 AM
09-07-2001 05:17 AM
Re: visualize box and cdrecord
I'm pretty new to HP-UX so I followed the install steps that was on the download page of gmake, said that by default it installed gmake to /usr/local. I have a /usr/loca/bin/make which I believe is gmake(?)
I did try your symlink suggestion but am getting the same errors that I have been:
==> MAKING DEPENDENCIES "OBJ/9000-782-hp-ux-cc/avoffset.d"
/bin/sh: makedepend: not found.
The only version of makedepend I can find anywhere on this system is /opt/imake/bin (if i include this in the PATH then it does work... but thats a pretty ugly way of doing it)
And:
(Bundled) cc: warning 480: The -A option is available only with the C/ANSI C product; ignored.
(Bundled) cc: warning 480: The -O option is available only with the C/ANSI C product; ignored.
If I use the 'COPTS= ' argument that the README.hpux tells me to, the -A error goes away but I still get the -O line.
One of the more frustrating things is that there are 3-4 versions of make on this box and i've no idea whats going on.
/usr/local/bin/make (i *think* this is my gmake depot install)
/opt/make/bin/make
/opt/imake/bin/imake
/bin/make
and only imake seems to have makedepend, i'm so lost :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 05:51 AM
09-07-2001 05:51 AM
Re: visualize box and cdrecord
I take it that you don't have the ansi C compiler (not free). I've had problems trying to build cdrecord with the bundled compiler. Do you have GCC installed, and if so, did you try building cdrecord with gcc?
As a last resort, I can compile it for you.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 07:34 AM
09-07-2001 07:34 AM
Re: visualize box and cdrecord
I've tried gcc a handful of times, typically I get the usual makedepend not found (not gcc's problem) and also a "unable to exec 'cpp': No such file or directory" error. lots of them. that would be gcc's problem.
I do have gcc and gcc's binutils in the path but cpp just isnt there. Why would that be? (Same goes for makedepend)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 08:06 AM
09-07-2001 08:06 AM
Re: visualize box and cdrecord
Hmm, that's interesting...cpp should have ben part of the gcc package. Makedepend is in /opt/imake/bin (that comes with the X11 Motif Development kit which comes with the ansi compiler I believe). Just add it to your path.
To be honest, I've never used the packaged gcc, I've always build my own. But that's a
very difficult task which usually takes me about a day or so.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 09:06 AM
09-07-2001 09:06 AM
Re: visualize box and cdrecord
In those systems there are ways of querying a package to view the files it contains, Would you happen to know what this is? closest thing i've found was swlist -l product, which just spits out the installed packages and not its contents.
Strange stuff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 09:19 AM
09-07-2001 09:19 AM
Re: visualize box and cdrecord
swlist would be the command you'd use for this. The syntax would be:
swlist -l file
You can get a list of the products using the same command with the -l product option (as you mentioned earlier)
If I get some time, I'll try to compile cdrecord with the bundled compiler and if it works, will let you know what I had to do.
-Santosh
P.S. Btw, don't forget to award points :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 12:13 PM
09-07-2001 12:13 PM
Re: visualize box and cdrecord
I dont understand what was wrong with the version of gcc that was in /opt but I grabbed a copy of it from devsource.hp.com, setup the correct PATH and it actually compiled. And it runs too, nice bonus.
Thx for your help, and whats this point thing you mentioned? :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2001 12:27 PM
09-07-2001 12:27 PM
Re: visualize box and cdrecord
-Santosh