HP-UX boxes - am I mad?


 
Thread Tools Search this Thread
Operating Systems HP-UX HP-UX boxes - am I mad?
# 1  
Old 06-17-2002
Data HP-UX boxes - am I mad?

Greetings, and thanks for having such an interesting forum!
I currently have 3 Intel boxes running 2000, and two HP boxes running HP-UX 10.20. I am very inexperienced with the Unix/Linux world. I have several problems, mainly in getting them all networked together. I am constrained to keep a windows box as internet gateway, for easy access by non-geek family members, so I need to tie in all else with that. I'm assuming the need for Samba in there somewhere, but am in a bit of a chicken-and-egg situation. I've got the software burnt to cd, but the bigger HP box (9000 755/99, 352MB ram), which has the cdrom, reads all the software depots with an appended ;1 on each filename. The software install programs won't ignore this, and I need to know how to get the system to 'un-append' this tag. Then I can at least get started properly! Any help much appreciated - I've been trying to solve this intermittently for months. I did hear that it just might be because I burnt the cd via a windows/netware system...
# 2  
Old 06-17-2002
We won't be able to help you decide if you're mad or not. You'll need another forum for that. We can probably deal with that cd problem though....

HP-UX has a cdfs built into the kernel and you probably did a
mount -F cdfs /dev/cdrom /cdrom
or something very equivalent. There is another way to mount cdroms and you will need to try that. It's the Portable File System code that comes bundled with HP-UX. You can do a "man -k pfs" to get a list of man pages.

But here is what I do basicly....

1. I do a "ln -s /dev/dsk/c6t2d0 /dev/cdrom" or whatever so I can just use /dev/cdrom. This makes stuff easier which ever way you go.

2. And of course I do "mkdir /cdrom" so that I have a mount point with a sensible name.


3. Next I create a file. /etc/pfs_mtab with a single line....
/dev/cdrom /cdrom pfs-iso9660 ro,suid 0 0

4. I start the pfs mount daemon:
pfs_mountd &

5. I start the other daemons. I go with 2. 1 may do, but 2 works...

pfsd 2 &

6. Wait about 30 seconds for everything to connect

7. pfs_mount /cdrom

I think that I got that right. It's been a while.... Anyway...it's close. Good luck.
# 3  
Old 06-22-2002
Smilie I'm in the middle of a clean install of HP-UX 10.20 (will upgrade to 11 whe I can get hold of the right size disk for the machine I'm currently using) and will be using your suggestions within the next few hours, or tomorrow morning now probably, as it's 11pm and I'm shattered. Many thanks for the tips! I'll let you know how it goes...
# 4  
Old 06-23-2002
Smilie
Many thanks for that. It still isn't going yet, but think that's down to me ATM...hang on...YES! Just got it going - have now installed bash! WAHEY! Many thanks again!
DennisSmilie
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Going mad on an egrep command (Reg Expressions)

Dear community, I am trying for several hours now to create an egrep command to grep the number of lines containing a specific text from a text-file but seem to have an error somewhere. The Textfile contains several thousand lines and has the expression "Lastname" in several lines.... (3 Replies)
Discussion started by: Donzo
3 Replies

2. Windows & DOS: Issues & Discussions

Getting mad at different CMD / Batch behaviour

I have these commands: MOVE "C:\Users\Pascal\Dropbox\Public\U_PC_Backup\Anki Flashcards\Cameo_App_Virtualization\0backup\Cards_only\Card_Backup\" "C:\Users\Pascal\Dropbox\Public\U_PC_Backup\Anki Flashcards\Cameo_App_Virtualization\0backup\Cards_only\Card_Backup_%date%\" xxcopy /E /Y... (2 Replies)
Discussion started by: pasc
2 Replies

3. Shell Programming and Scripting

Writing a 'Mad Libs' program using Ruby?

How would I go about writing a 'Mad Libs' type program using Ruby? Any examples would be greatly appreciated. Thanks! (0 Replies)
Discussion started by: greeky
0 Replies

4. UNIX for Dummies Questions & Answers

Using gzip and my speakers have gone mad!

Hello, I wanted to compress a directory which I did with: tar -czvf backup15062007.tar.gz backup15062007/ I knew that you could specify the compression level with gzip so I then did: gzip -cvf9 backup15062007.tar.gz backup15062007compress.tar.gz Now I know this probably won't... (5 Replies)
Discussion started by: patwa
5 Replies

5. Shell Programming and Scripting

Simple test driving me mad!

Hi all, I have been writing a script to automate some work for myself and have come accross a problem. I cannot understand why it doesn't work, but then I am new to both Unix and Korn shell hacking! Here is the problem: I want to interogate a file for a number and store that number in... (6 Replies)
Discussion started by: alarmcall
6 Replies

6. Programming

text boxes, radio buttons , check boxes in c++ on unix

Hi ! Please tell me how to get radio buttons, text boxes , check boxes , option buttons , pull down menus in C++ on Unix. I think it would be done using curses.h ..but that's all i know. TIA, Devyani. (3 Replies)
Discussion started by: devy8
3 Replies
Login or Register to Ask a Question