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
03-19-2008 07:54 AM
03-19-2008 07:54 AM
swcopy
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2008 07:59 AM
03-19-2008 07:59 AM
Re: swcopy
1)pvcreate each of the disks.
2) Create a volume group for the disk or use vgextend to extend an existing volume group to this disk.
3) lvextend your logical volume to the new disks.
4) umount the filesystem and use extendfs to extend it. If you have online JFS you can extend it hot and without umount. fsadm command.
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
03-19-2008 08:15 AM
03-19-2008 08:15 AM
Re: swcopy
Are you swcopying installation DVDs for example?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2008 08:23 AM
03-19-2008 08:23 AM
Re: swcopy
My question is that i have to copy these installation files on the /sap_software filesystem one by one so that later on they could be installed from there....
Now, how do i copy them from the /cdrom to /sap_software that they dont get overwritten on top of each other.. sxcopy them in append so that i have all 15 copied to /sap_software..
Hope this clarifies.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2008 08:23 AM
03-19-2008 08:23 AM
Re: swcopy
a) bdf /filesystem
b) bdf /new_filesystem (* verify sizes of /filesystem and /new_filestems *)
cd /filesystem
cp -p -r /filesystem /new_filesystem
The above is all you need.
However, if you're really not confused and really want to copy 15 disks onto x'# of other disks.
a) verify sizes of disks with ioscan (* Note the size and path. If size not listed then use 'diskinfo' command.
b) dd if=/dev/dsk/c#t#d# of=/dev/dsk/c#t#d#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2008 08:28 AM
03-19-2008 08:28 AM
Re: swcopy
Mount the CDs and see what it contains. Most likely you will end up just doing a regular cp copy.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2008 08:33 AM
03-19-2008 08:33 AM
Re: swcopy
while using this command....
1st disk copied like this..
cp -p -r /cdrom /sap_software
2nd disk if copied like this will it append or erase the previous copied contents, coped onto /sap_software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2008 09:06 AM
03-19-2008 09:06 AM
Re: swcopy
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2008 10:29 AM
03-19-2008 10:29 AM
Re: swcopy
>2nd disk if copied like this will it append or erase the previous copied contents, coped onto /sap_software
I have that same problem when I burst patches.
cp -r or mv will just put any existing directories under the old ones and your tree will be skewed.
One solution to the problem is to use tar. tar will just "merge" the new tree onto the old one.
Of course, if you want to spend a lot of time, you could use cp -r at various levels in your /cdrom tree and copy to the corresponding parts in your target tree.