- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Moving files problem
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-19-2005 10:05 PM
02-19-2005 10:05 PM
I am trying to move some files but I am getting the error.
# pwd
/gpms_f/GPMSFKP/oradata
#mv oradata /gpms_f/GPMSFKP/oradata
mv: oradata and /gpms_f/GPMSFKP/oradata/oradata are identical
I am trying to move the oradata directory up one but Im am having problems. Any work arounds
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2005 10:23 PM
02-19-2005 10:23 PM
Re: Moving files problem
# pwd
/gpms_f/GPMSFKP/oradata
# mv oradata ../
HTH,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2005 11:51 PM
02-19-2005 11:51 PM
Re: Moving files problem
It was stating device busy...so I moved to /
and issued command
#mv /gpms_f/GPMSFOF/product/product ../
And this has now filed / filesystem. How can I clear this down without losing /gpms_f/GPMSFOF/product/product
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 12:30 AM
02-20-2005 12:30 AM
Re: Moving files problem
Basically I have got a product directory that needs to be moved up one directory onto the old product. In /gpms_f/GPMSFOF/product/
Please Help !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 12:39 AM
02-20-2005 12:39 AM
Re: Moving files problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 01:10 AM
02-20-2005 01:10 AM
Re: Moving files problem
#cd /gpms_f/GPMSFKP
check (symbolic links)
#ls -lR oradata
hide
#mv oradata oradata_old
move up
#mv oradata_old/oradata .
cleanup (or not)
#rmdir oradata_old
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 01:10 AM
02-20-2005 01:10 AM
Re: Moving files problem
above is where it is now and you need to move it to
/gpms_f/GPMSFOF/product
# mv /gpms_f/GPMSFOF/product/product /gpms_f/GPMSFOF/temp_name
check if this is ok
# mv /gpms_f/GPMSFOF/temp_name /gpms_f/GPMSFOF/temp_name/product
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 01:25 AM
02-20-2005 01:25 AM
Re: Moving files problem
The temp_name didnt work, ran out of disk space.
Your were right in saying
I want to move the product directory..
/gpms_f/GPMSFOF/product/product
Up one into..
/gpms_f/GPMSFOF/product
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 01:34 AM
02-20-2005 01:34 AM
Re: Moving files problem
Could you post the output of
# bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 01:49 AM
02-20-2005 01:49 AM
Re: Moving files problem
Bdf attached.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 02:04 AM
02-20-2005 02:04 AM
Solution56885248 15774816 40901248 28% /gpms_f/GPMSFOF/product
ok /gpms_f/GPMSFOF/product is a mountpoint.
# cd /gpms_f/GPMSFOF/product/product
Check with pwd
# mv * /gpms_f/GPMSFOF/product
# cd ..
# ls -la
# rmdir product
# pwd
/gpms_f/GPMSFOF/product
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 03:31 AM
02-20-2005 03:31 AM
Re: Moving files problem
You'll have to eliminate the oradata directory below it by moving everythign from that directory directly to the mountpoint.
This should take no time, and no space.
#mv /gpms_f/GPMSFOF/oradata/oradata/* /gpms_f/GPMSFOF/oradata
now you should ba able to remove the now empty directory.
#rmdir /gpms_f/GPMSFOF/oradata/oradata
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 07:57 PM
02-20-2005 07:57 PM
Re: Moving files problem
Thanks very much for your quick responses. got me out of a hole.