- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CIFS client cp cannot access
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
02-06-2006 01:44 AM
02-06-2006 01:44 AM
CIFS client cp cannot access
I Configured CIFS client on the 11.23 system : OK
I shared the cdrom drive on my PC : OK
I copied the CDs 1of4, 2of4 : OK
I got errors during CD 3of4 copy :
cp: cannot access Perl5-32/PERL-MAN/opt/perl/man/man3/ActivePerl::DocTools::PSP::Socket.3: No such file or directory
cp: cannot access Perl5-32/PERL-MAN/opt/perl/man/man3/ActiveState::RelocateTree.3: No such file or directory
cp: cannot access Perl5-32/PERL-MAN/opt/perl/man/man3/Apache::SOAP.3: No such file or directory
cp: cannot access Perl5-32/PERL-MAN/opt/perl/man/man3/Apache::XMLRPC::Lite.3: No such file or directory
.......
...and more.
I guessed it's something about "::" over CIFS mountpoint.
Any Idea?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2006 01:49 AM
02-06-2006 01:49 AM
Re: CIFS client cp cannot access
It could be a problem with filename length. Probably, you can zip the cds and unzip in HP-UX.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2006 02:10 AM
02-06-2006 02:10 AM
Re: CIFS client cp cannot access
You should not do the copy from a Windows machine.
The errors you are encountering is because the Windows machine did not mount the OS CD correctly.
What you will be left with on the hp side will likely be useless as far as an OS isntall.
What you should do is put it in an HP-9000 server, mount it normally and then to get it to disk, make it an NFS share.
mount the cdrom
vi /etc/exports
add /cdrom
save the file.
exportfs -av
Now mount the filesystem from the remote host and use a cp command to get it from the cd to the system you want it on.
Or, simply mount the cd on one hp-9000 machine and do this on the target machine, the one that you want the os cd saved on:
mkdir /var/hpux/cd4 # your choice
scp -rp hostwithcd:/cdrom/* /var/hpux/cd4
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2006 03:23 AM
02-06-2006 03:23 AM
Re: CIFS client cp cannot access
I will put the CDs in old good hp-ux drived cdrom drive...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2006 03:26 AM
02-06-2006 03:26 AM
Re: CIFS client cp cannot access
Thanks for help.