- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to copy a directory from unix to /EFI
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
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
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-23-2009 10:40 AM
тАО08-23-2009 10:40 AM
How to copy a directory from unix to /EFI
I need to copy a directory from unix to /EFI
I tried efi_cp and efi_cp -r
Its for test purpose only.Or any idea to hav /stand backup in /EFI/test etc?
eg:
# efi_cp -d /dev/rdsk/c3t2d0s1 /stand/* /EFI/skr
efi_cp: cannot copy directory. Use -r for directory copying
# efi_cp -r -d /dev/rdsk/c3t2d0s1 /stand/* /EFI/skr
efi_cp: invalid path
rgds Sreekumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2009 11:18 AM
тАО08-23-2009 11:18 AM
Re: How to copy a directory from unix to /EFI
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2009 11:25 AM
тАО08-23-2009 11:25 AM
Re: How to copy a directory from unix to /EFI
====================================================================================
from the man pages:
http://docs.hp.com/en/B9106-90008/efi_cp.1M.html
the syntax is:
efi_cp [-d devicefile] -r file_or_dir1 [file_or_dir2...] dest-directory
the "-r" is supposed to be followed by a directory or file name, not the "-d". Try
efi_cp -d /dev/rdsk/c3t2d0s1 -r /stand /EFI/skr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2009 12:28 PM
тАО08-23-2009 12:28 PM
Re: How to copy a directory from unix to /EFI
I think the skr directory doesn't exist.
While copying a directory , the destination directory should exist.(from my testing).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2009 08:48 PM
тАО08-23-2009 08:48 PM
Re: How to copy a directory from unix to /EFI
Check the directory /EFI/skr is exists or not and **free space available** by,
#efi_ls -d /dev/rdsk/c3t2d0s1 /EFI/
If /EFI/skr is not exists create it with,
#efi_mkdir -d /dev/rdsk/c3t2d0s1 /EFI/skr
Try to copy again with,
#efi_cp -r -d /dev/rdsk/c3t2d0s1 /stand/* /EFI/skr/
Reagrds,
LIJEESH N G
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2009 11:12 PM
тАО08-23-2009 11:12 PM
Re: How to copy a directory from unix to /EFI
thnks for your replies.
The directory skr is already created under /EFI.
I need to check with the command
efi_cp -d /dev/rdsk/c3t2d0s1 -r /stand /EFI/skr
I will let you know the progress as now I dont hav access to my server.
Thnks for your support!
Rgds Sree