- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- [drm:i810_wait_ring] *ERROR* space: 65520 wanted 6...
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
09-30-2003 02:55 AM
09-30-2003 02:55 AM
# cd /oldroot
# find . -xdev | cpio -pduvlm /newroot
I had some problems with booting, but finally doing grub_install, etc, I managed to boot from the new disk and remove the old disk from the system completely.
Now, when I boot I get several errors:
(1) named doesn't start (not important!):
named[2412]: none:0: open: /etc/named.conf: permission denied
named[2412]: loading configuration: permission denied
I checked the file '/etc/named.conf'. There is nothing wrong with the file. It is same as the original on the old boot disk.
(2) lpd doesn't start (not important either):
lpd: 2003-09-30-14:21:24.995 tstws2 Read_file_list: cannot stat required or included file '/etc/printcap' - Permission denied
I checked '/etc/printcap'. Nothing wrong with this file.
(3) X doesn't start (important). It gives the following error messages on the console:
[drm:i810_wait_ring] *ERROR* space: 65520 wanted 65528
[drm:i810_wait_ring] *ERROR* lockup
I tried to reconfigure X (using redhat-config-xfree86) and specifying standard VGA 640x480 mode, but I still get the same errors.
Some help (especially for the 3rd case) will be highly appreciated...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2003 03:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2003 06:47 PM
09-30-2003 06:47 PM
Re: [drm:i810_wait_ring] *ERROR* space: 65520 wanted 65528
# mount ... /oldroot
# cd /oldroot
# find . -type d -exec chmod --reference='{}' /'{}' \;
# find . -type d -exec chown --reference='{}' /'{}' \;
and all the problems are solved.
Now, another question: Since the command sequence:
# cd /oldroot
# find . -xdev | cpio -pduvlm /newroot
failed to replicate permission information on directories, what is the best command sequence to move (actually copy) files from one filesystem to another?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2003 08:39 PM
09-30-2003 08:39 PM
Re: [drm:i810_wait_ring] *ERROR* space: 65520 wanted 65528
cd /
tar cvf - * | (cd /newplace; tar xpf -)
But, this won't copy device files as far as I know.
Did you aready have an "etc" directory in the filesystem you were copying to because then the permsiions could well end up wrong.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2003 11:16 PM
09-30-2003 11:16 PM