Re: Tar taking 2 hrs for filesystem with deep directory structure
Hi Steven ,We need /backup of 6.7GB to be copied to /temp_backup on same VM ( Redhat linux 6.1 )cd /backuptar -cvf /temp_backup/backup.tar *
View ArticleRe: tar taking 2 hrs for filesystem with deep directory structure
>tar -cvf /temp_backup/backup.tar * By using a tar pipeline, you don't have to write to the 6.7 GB tarfile and then read back from it. You just send that data through the pipe.Assuming you are...
View ArticleRe: tar taking 2 hrs for filesystem with deep directory structure
Hi Dennis , Tar pipeline ? Can you please share the same
View ArticleRe: tar taking 2 hrs for filesystem with deep directory structure
>tar pipeline? cd /temp_backuptar -cf - -C /backup . | tar -xf -
View ArticleRe: tar taking 2 hrs for filesystem with deep directory structure
> We need /backup of 6.7GB to be copied to /temp_backup on same VM> [...] Do you want a giant "tar" file at the destination, or do you want afile tree like the source file tree?> cd...
View ArticleFile System goes to read-only mode
Some times filesystems goes to read-only mode Solution is: Unmount the filesystem run fsck and them check again. Example: Tried to create a file : touch a touch: cannot touch `a': Read-only file...
View ArticleRe: tar taking 2 hrs for filesystem with deep directory structure
Since you're on the same machine - cpio might be your friend.Run this as root: cd <sourcedirectory>find . | cpio -pdmvu <destdirectory> ex: sourcedirectory = /src, destdirectory = /dest...
View ArticleRe: smartarray 6i RAID 1+0 find pairs for cloning
I believe that It won't be three drives to three drives. These drives are striped and mirrored. So, in the case of the SmartArray Controllers, I *think* your data is probably striped across all of the...
View ArticleRe: Move LUNs a disk array to another with LVM mirror
If you know HPUX LVM well, I don't believe you'll have any troubles. The only thing I've found missing is PVGs, and I've not seen lots of people using that to begin with.
View ArticleRe: RHEL OS cache memory behavior
In general, malloc() can/will leave you with your memory very cut and sliced up. In these cases, when a programmer makes many thousands of calls to malloc() one should consider using/creating a memory...
View ArticleRe: RHEL OS cache memory behavior
>malloc can/will leave you with your memory very cut and sliced up. Yes, heap fragmentation. Which unfortunately quacks like a memory leak. :-( >it becomes harder and harder for your OS to find...
View ArticleHP-SNMP-AGENTS trap generation in v2c support?
Hi, I have a DL380 G9 running RHEL 6.6. I am running hp-snmp-agents-10.20-2789.26.rhel6.x86_64.rpm. At present the HP-SNMP-AGENTS generate v1 traps for hardware events (such as redundant PSU failure)....
View ArticlePavilion DV6 Notebook Starting with Windows 7 Pro SP1, Recovery, System...
Hi, How do I add Ubuntu to a system as set up in the title of this post? Regards, Matthew McAllum.
View ArticleRe: Pavilion DV6 Notebook Starting with Windows 7 Pro SP1, Recovery, System...
This is the wrong forum for printers and PC products. You need to register in the HP Support Forum:http://h30434.www3.hp.com/
View ArticleRe: RHEL OS cache memory behavior
I find it more likely that the programmer is accepting the data into data structures that he/she created - one row at a time. Getting data from a cursor generally does not work in the way you state -...
View ArticleRe: multipath recommended configuration
The MSA array is NOT an Active-Active Array.So expect not all four sub-paths (sdXX) will be active. The array is active-passive so expect I/O to be on half the active paths only... Let me know if this...
View ArticleRe: Where is B140i Ubuntu driver image?
The HP Dynamic Smart Array B140i controller driver for Ubuntu 14.04 is not available. Testing was done using AHCI SATA mode....
View ArticleRe: Where is B140i Ubuntu driver image?
Actually I got it working on Ubuntu 14.04Thank you anyway.
View ArticleTar taking 2 hrs for filesystem with deep directory structure
Hi ,We have a VM in which we want do local copy of 6.7GB .Taking more than 2 hrs to copy . What is the fastest way to copy data from one filesystem to another ?Have tried throught tar -cvf its taking...
View ArticleRe: Tar taking 2 hrs for filesystem with deep directory structure
> [...] with deep directory structure Define "deep".> Taking more than 2 hrs to copy . When you "copy" _how_, exactly? As usual, showing actual commands with their actual output can bemore...
View Article