- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: unexpected file name (with a dot) from a CD
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
08-13-2002 11:10 AM
08-13-2002 11:10 AM
unexpected file name (with a dot) from a CD
I use the following command to mount a CD.
mount -rF cdfs -o cdcase /dev/dsk/c1t2d0 /CDROM
There is a file in the CD called "setup", but I see
the file as "setup." with a dot appending. (I have to
to -o cdcase since the file names used by the
"setup" are all in lower case.)
Just wonder if there is any way to get rid of the dot.
Best regards,
Reggie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 11:17 AM
08-13-2002 11:17 AM
Re: unexpected file name (with a dot) from a CD
Maybe you can try this.
- remove the file /etc/pfs_fstab
- Start the daemons on the following order:
# nohup /usr/sbin/pfs_mountd &
# nohup /usr/sbin/pfsd &
- Mount the CD:
# pfs_mount -o xlat=unix /dev/dsk/cxtydz /SD_CDROM
- To Umount the CD:
# pfs_umount / SD_CDROM
# ps -ef |grep pfs
- "kill -15 xxxx" pid process for pfsd
- "kill -15 xxxx" pid process for pfs_mountd
I think it will work.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 12:03 PM
08-13-2002 12:03 PM
Re: unexpected file name (with a dot) from a CD
When I tried to run
nohup /usr/sbin/pfs_mountd &,
it complained
"pfs_mountd: can't contact pfs_mountd.rpc RPC_PROG_NOT_REGISTERED".
How to resolve the problem?
(By the way, there is no
/etc/pfs_fstab on my machine.)
Reggie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 12:08 PM
08-13-2002 12:08 PM
Re: unexpected file name (with a dot) from a CD
Try this:-
1. swinstall
and select the cd to install from.
2. Open another session and look at the file name structure - it should be ok.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 12:10 PM
08-13-2002 12:10 PM
Re: unexpected file name (with a dot) from a CD
her is the pfs_fstab you can create ,
/dev/dsk/c1t2d0 /cdrom pfs-rrip xlat=unix 0 0
ofcouse the rpc.mountd daemon should be running check it using ps -aef | grep mountd .
pfs_mountd &
pfsd &
pfs_mount -x lower_case -x no_version /dev/dsk/c1t2d0 /cdrom
should do the trick
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 12:22 PM
08-13-2002 12:22 PM
Re: unexpected file name (with a dot) from a CD
get the new "mount(1m)" patches and use the new option "-o rr" (RockRidge)...
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 01:20 PM
08-13-2002 01:20 PM
Re: unexpected file name (with a dot) from a CD
Paula,
The CD is for general UNIX/LINUX distribution.
Manoj,
How to launch rpc.mountd Daemon?
Reggie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 01:30 PM
08-13-2002 01:30 PM
Re: unexpected file name (with a dot) from a CD
edit /etc/rc.config.d/nfsconf and change start_mountd to 1 and then do a /sbin/init.d.nfserver start to start the mountd daemon
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 04:55 PM
08-13-2002 04:55 PM
Re: unexpected file name (with a dot) from a CD
I followed your instruction and modified /etc/rc.config.d/nfsconf, but still cannot run pfs_mountd after having rpc.mountd up and running. (ps -aef shows rpc.mountd)
Any suggestion? (We got HP-UX 10.20 here, by the way.)
Best regards,
Reggie