Best of Technical Support
I recently bought a Sony R505 laptop and when I tried to install SuSE Linux, I discovered that after the boot, Linux could not see the CD-ROM. It turned out that the docking station where the CD-ROM lives is accessed from the computer via FireWire somehow.
—Steven Smith, sjs@chaos-tools.com
Your confusion may be due to differing procedures for the various distributions available. For SuSE, there is a basic HOWTO guide in their knowledge base, which you can access by visiting sdb.suse.de/en/sdb/html/tbraza_dosinst.html. This should get you headed in the right direction.
—Chad Robinson, crobinson@rfgonline.com
Are there RPM packages for the latest versions of Qt and KDE?
—Dan, dhdeang@SoftHome.net
To locate RPMs, I find rpmfind.net to be a helpful portal. In this case, there is a page specifically for Qt and KDE: rpmfind.net/linux/RPM/Development_KDE_and_QT.html. On that page I note that Qt 3.x is still listed as a development package, but it is available.
—Chad Robinson, crobinson@rfgonline.com
I'm trying to read a DDS-3 tape made on an HP9000 machine running HP-UX 11. I'm trying to read it using my Linux server that runs Red Hat 7.2 (2.4.9.31SMP kernel). The Linux server tape drive is a Sony SCSI device, /dev/st0. The tape contains Oracle export files of a large Oracle database. The HP machine is no longer available, and I'm trying to rebuild the DB on Linux. When I try to read the tape with either tar -tvf /dev/st0 or tar -xvf /dev/st0 I always get:
Input/Output error at the beginning of the tape, error is not recoverable, exiting now
Why?
—Adrian Manship, adrian.manship@skynet.be
Check two things related to the tape drive. First, DDS drives support the concept of hardware compression, which may have been used by HP-UX and may not be enabled by Linux. If there is a mismatch in this setting, that can cause problems reading the tape.
Second, although tar itself is a relatively standard format, is it possible that the tape was not created using tar? Depending on the version of Oracle used to create the tape, it may have internal support for reading/writing tape devices as backup media. Check a small sample of the file to be sure it is actually in tar format by running dd if=/dev/st0 of=/tmp/tape bs=512 count=16, replacing the bs value with a block size that works well for your drive and the count value with a count that yields a sufficient number of those blocks to take a quick look. This example will read 8K from the tape.
Perhaps the tape itself is bad. If it succeeds, you should be able to use a hex editor or text editor that can handle high-ASCII characters without choking to verify the format of the contents of the tape. In case you aren't familiar with the general format, each file entry should start with its filename, followed by a header that contains miscellaneous file information such as size and permissions, followed by the file itself.
—Chad Robinson, crobinson@rfgonline.com
The easiest thing to do, would be to buy/borrow/steal a similar machine to do the restore.
—Christopher Wingert, cwingert@qualcomm.com
I used to work with HP-UX DDS tapes, and most of the time they were used with the cpio utility. Keep in mind that cpio is a complicated utility with many options, so check the manual pages (man cpio) and play around with some of the options. Be careful not to write your tape accidently; I suggest that you physically enable the write-protect feature on the cartridge. Look at www.lns.cornell.edu/public/COMP/info/cpio/cpio_2.html for a simple cpio tutorial.
—Felipe E. Barousse Boué, fbarousse@piensa.com
When I sign on using root, the screensaver does not work. When I sign on with another ID, it does. How can I make it work when signed on as root?
—James Logan, jlogon@mail.ewu.edu
xscreensaver will not work as root on purpose. It's a security feature; you're not supposed to run X as root (log in as a user and use su - where needed). This is explained in the FAQ, along with a solution to how to run X programs as root if you need to (www.jwz.org/xscreensaver/faq.html#root-lock).
—Marc Merlin, marc@merlins.org
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Linux-Based X Terminals with XDMCP
- Parallel Programming with NVIDIA CUDA
- 100% disappointed with the decision to go all digital.
- Readers' Choice Awards 2011
- You Need A Budget
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- RSS Feeds
- The Linux RAID-1, 4, 5 Code
- Gnome3 is such a POS. No one
9 hours 24 min ago - Gnome 3 is the biggest POS
9 hours 35 min ago - I didn't knew this thing by
15 hours 39 min ago - Author's reply
19 hours 3 min ago - Link to modlys
20 hours 10 min ago - I use YNAB because of the
20 hours 21 min ago - Search
1 day 1 hour ago - Question
1 day 1 hour ago - for the record
1 day 1 hour ago - That's disappointing. Thanks
1 day 4 hours ago






Comments
Thanks. I found the help I
Thanks. I found the help I needed.