User(s) browsing this thread: 1 Guest(s)
|
Large File to USB_DRIVE_A-1
|
|
11-11-2010, 01:34 PM
(This post was last modified: 11-11-2010 01:34 PM by xor.)
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
You need to mount /dev/sdc1 so you can check the i-nodes. (use google to learn how mount works, i.e. Search for Mount)
However after rethinking the problem, i-nodes is probably not the problem, You normally would get another more desciptive error message. Even if i-nodes is the problem, you can't just change the file system to increase i-nodes. To have more i-nodes the filesystem has to be re-created with mkfs, which means you have to remove/backup all your data first or it will be lost. It is possible that the drive is failing or close to complete failure. I would look to backup all your data that you want to preserve from that drive immediately before you do anymore twiddling of the disk. A rare but indicative symptom of failure for modern drives is the inability to actually use the entire drive even though it seems you have enough free space to complete an operation. PCH A-100, A-110 & A-200 |
|||
|
11-11-2010, 01:37 PM
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
I have no idea what the actual drive is? Perhaps it would be best, if it was the only connected drive in the computer and then there would be no mix up?
Ok, some Linux basics. Drives are called "/dev/sda", "/dev/sdb", "/dev/sdc", "/dev/sda" etc. Partitions on the "/dev/sda" hard drive are called "/dev/sda1", "/dev/sda2", "/dev/sda3", "/dev/sda4" etc. So if your PCH drive was the only hard drive in the computer it should show up as "/dev/sda" The A-110 hard drive has three partitions. The last partition, "/dev/sda3" is the user's data partition. The thing is, before you can get a reading, of the i-nodes, you have to mount the partition. In the shell (terminal) you would type; Code: mount -t ext3 /dev/sda3 /mntC-200, A-110 both playing from a DIY Linux Raid 5 server. Remuxes, Captures and Transcodes done on a desktop running; Win7, Intel i7 hexacore processor with 24 GB ram, WD VR OS drive and a WD Black 2 TB data drive. |
|||
|
11-11-2010, 02:30 PM
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
I would back up the data you want to preserve first.
PCH A-100, A-110 & A-200 |
|||
|
11-11-2010, 04:26 PM
(This post was last modified: 11-11-2010 04:29 PM by Beauty555.)
|
|||
|
|||
RE: Large File to USB_DRIVE_A-1
(11-11-2010 01:34 PM)xor Wrote: A rare but indicative symptom of failure for modern drives is the inability to actually use the entire drive even though it seems you have enough free space to complete an operation. Can anybody tell me how it is possible that I can do the following steps with the USB_DRIVE_A-1: 1) I can't copy a 28 Gb M2TS file to the USB_DRIVE_A-1 because then windows explorer says there is not enough place for it 2) But it is possible to copy 5 times a 8 Gb WMV files (40 Gb in total) to the USB_DRIVE_A-1 3) I delete the 5 times 8 Gb files (40 Gb) from the USB_DRIVE_A-1 again 4) But still the 28 Gb M2TS file can't be copied |
|||
|
11-11-2010, 04:55 PM
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
Well, I don't have an answer for you.
It does suggest, it's not an i-node problem. 5 small files would use 5 i-nodes, where as the large file would only use 1 i-node. You did a file system check and it came up good, so I don't know I guess that if it were my drive, I would run badblocks on the drive and see what it says. What ever, I would do like Xor says and get the data off first and then you have no worries. The good news is you can still read the drive. I assure you, things could be much worse. C-200, A-110 both playing from a DIY Linux Raid 5 server. Remuxes, Captures and Transcodes done on a desktop running; Win7, Intel i7 hexacore processor with 24 GB ram, WD VR OS drive and a WD Black 2 TB data drive. |
|||
|
11-11-2010, 06:28 PM
|
|||
|
|||
RE: Large File to USB_DRIVE_A-1
(11-11-2010 04:55 PM)nuke12 Wrote: Well, I don't have an answer for you. A side effect of running badblocks on modern drives(i.e. S.M.A.R.T drives) is it actually does not do what it was designed to do, instead if anything it actually will cause a drive to fail sooner. badblocks does not actually find bad blocks until it is too late. Modern drives reallocate sectors on the fly until they run out of spares. Once they run out of spares then badblocks might find something, but by then it is too late, the drive is useless. There are actual tools to use on new (S.M.A.R.T) drives, except they do not work in USB type enclosures. Bottom line, backup your data first before twiddling with the drive more. PCH A-100, A-110 & A-200 |
|||
|
11-11-2010, 09:36 PM
(This post was last modified: 11-11-2010 09:38 PM by nuke12.)
|
|||
|
|||
RE: Large File to USB_DRIVE_A-1
(11-11-2010 06:28 PM)xor Wrote: A side effect of running badblocks on modern drives(i.e. S.M.A.R.T drives) is it actually does not do what it was designed to do, instead if anything it actually will cause a drive to fail sooner. badblocks does not actually find bad blocks until it is too late. Modern drives reallocate sectors on the fly until they run out of spares. Once they run out of spares then badblocks might find something, but by then it is too late, the drive is useless. Did we not talk about this before? I suggested to the OP to backup the drive. After that I would give it hell. Badblocks will find bad blocks if the drive has used up all it's spares. It will also find other weakness in the drive. I would rather find out now that the drive is bad then think it is ok and then have it fail. In warranty or out of warranty, I want to know. (11-11-2010 06:28 PM)xor Wrote: There are actual tools to use on new (S.M.A.R.T) drives, except they do not work in USB type enclosures. SMART is ok, but mfgs lie using SMART. They will many times hide things if you solely depend on SMART. One lie, I've found is the amount of hours the drive has run. Normally this happens after the warranty is over and SMART says the drive is about to die. I've run that same drive for 2 years past the dead date but after testing with other utilities. Badblocks is an excellent test of a hard drives. I use both the destructive and non-destructive write tests. I also use SMART and see what it says. When your in a war, you use the tools, you have, but always backup. C-200, A-110 both playing from a DIY Linux Raid 5 server. Remuxes, Captures and Transcodes done on a desktop running; Win7, Intel i7 hexacore processor with 24 GB ram, WD VR OS drive and a WD Black 2 TB data drive. |
|||
|
11-11-2010, 09:53 PM
|
|||
|
|||
RE: Large File to USB_DRIVE_A-1
(11-11-2010 09:36 PM)nuke12 Wrote: Did we not talk about this before? I suggested to the OP to backup the drive. After that I would give it hell. Badblocks will find bad blocks if the drive has used up all it's spares. It will also find other weakness in the drive. I would rather find out now that the drive is bad then think it is ok and then have it fail. In warranty or out of warranty, I want to know. I must have missed(and still miss) where you said backup first *before* running badblocks. Yes we did touch on this before, and I still contend that badblocks is worthless and only causes a disk to fail sooner. PCH A-100, A-110 & A-200 |
|||
|
11-11-2010, 10:12 PM
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
Still thinking on this, I have a very good example of this here, right now.
This is a badblocks output after running on the same drive 3 times and it finding 100's of bad blocks. Now it only sees 17 bad blocks but it forced the drive to map out the rest. The current 17 will not go away. Quote:badblocks -v /dev/sda 286461920 286461700 Ok, here is the same drive running SMART 3 times to look for bad blocks and this is the full output from SMART on the same drive; Code: smartctl version 5.36 [i486-slackware-linux-gnu] Copyright (C) 2002-6 Bruce AllenYou should notice two things in this report; Code: SMART overall-health self-assessment test result: PASSEDCode: # 1 Extended offline Completed: read failure 90% 1762 572918952Now, would you trust this drive? I have 17 bad blocks that won't go away but SMART still says the drive "PASSED" ok. C-200, A-110 both playing from a DIY Linux Raid 5 server. Remuxes, Captures and Transcodes done on a desktop running; Win7, Intel i7 hexacore processor with 24 GB ram, WD VR OS drive and a WD Black 2 TB data drive. |
|||
|
11-11-2010, 10:29 PM
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
Your smart tool is broken with respect to reading the proprietary information that the manufacturer has embedded in the drive. Why do you think that the linux driver knows everything about all vendors smart drive status, why is that the vendor is lying instead of the tool is not sufficient.
btw, this thread is hijacked. I am partly responsible for that happening. I should not fall into that behavior. For the OP, backup your data. I'm suspicious of the the drive, also don't waste your time with badblocks, it does not fix anything. PCH A-100, A-110 & A-200 |
|||
|
11-11-2010, 10:54 PM
(This post was last modified: 11-11-2010 10:57 PM by nuke12.)
|
|||
|
|||
RE: Large File to USB_DRIVE_A-1
(11-11-2010 10:29 PM)xor Wrote: Your smart tool is broken with respect to reading the proprietary information that the manufacturer has embedded in the drive. Why do you think that the linux driver knows everything about all vendors smart drive status, why is that the vendor is lying instead of the tool is not sufficient. Of course the Linux smartctl tool does not know everything. Use the mfg's software to read all the possible SMART values. The reason for this is SMART is only a semi-standard. Different mfgs have non-standard entries. I did say; Quote:When your in a war, you use the tools, you have, but always backup. You claim badblocks can cause your drive to fail. I think that is a good thing. If badblocks can cause it to fail, then it will fail with normal usage. We do agree on one thing. Backup up the drive, before it is too late. C-200, A-110 both playing from a DIY Linux Raid 5 server. Remuxes, Captures and Transcodes done on a desktop running; Win7, Intel i7 hexacore processor with 24 GB ram, WD VR OS drive and a WD Black 2 TB data drive. |
|||
|
11-11-2010, 10:57 PM
|
|||
|
|||
RE: Large File to USB_DRIVE_A-1
(11-11-2010 10:54 PM)nuke12 Wrote: Of course the Linux smartctl tool does not know everything. Use the mfg's software to read all that is possible SMART values. The reason for this is SMART is only a semi-standard. Different mfgs have non-standard entries. I did say; Backups are good. badblocks is a worthless pile of stinking fertilizer. PCH A-100, A-110 & A-200 |
|||
|
11-11-2010, 11:32 PM
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
I'm out of here. I can't be bothered.
C-200, A-110 both playing from a DIY Linux Raid 5 server. Remuxes, Captures and Transcodes done on a desktop running; Win7, Intel i7 hexacore processor with 24 GB ram, WD VR OS drive and a WD Black 2 TB data drive. |
|||
|
11-18-2010, 07:27 PM
|
|||
|
|||
|
RE: Large File to USB_DRIVE_A-1
I fixed my problem.
1) Maked a backup of all the software on the Disk 2) Format the Disk 3) Copied the large file to the Disk 4) Copied the backup also back to the Disk Thanks for all the help and suggestions ! |
|||
|
« Next Oldest | Next Newest »
|
| Possibly Related Threads... | |||||
| Thread: | Author | Replies: | Views: | Last Post | |
| access denied to file | filo8818 | 2 | 717 |
07-11-2012 03:22 PM Last Post: filo8818 |
|
| file:///opt/sybhttpd/localhost.drives/NETWORK_SHARE/... | mvalgard | 0 | 585 |
05-04-2012 04:10 PM Last Post: mvalgard |
|
| Directorie changed into file | rush | 6 | 1,464 |
01-01-2011 03:14 AM Last Post: BanditRider |
|
| Windows 7 File Transfer | Myrou | 2 | 1,426 |
12-16-2010 03:05 AM Last Post: Myrou |
|
| Popcorn file help | loungeroom | 1 | 941 |
12-06-2010 08:13 AM Last Post: DefBref |
|
| Request: A100 LIRC remote driver + conf file | markg85 | 9 | 3,264 |
09-27-2010 03:42 PM Last Post: markg85 |
|
| File Transfer to USB 1 | zetor12 | 1 | 923 |
09-23-2010 02:46 AM Last Post: tennisbgc |
|
| Copy 6.8GB file from A110 to pc - hangs | jomuir | 1 | 1,070 |
08-09-2010 11:58 AM Last Post: BanditRider |
|
| A100 freezes after deleting file in HDD | wbree | 0 | 784 |
08-08-2010 09:27 AM Last Post: wbree |
|
| Need some urgent HELP : Ext3 USB "file system read only" Error! | arnovanamerongen | 5 | 2,165 |
05-29-2010 08:43 AM Last Post: arnovanamerongen |
|

Twitter
Facebook
NMT Wiki
Search
Member List
Help
A-400 [13 May 2013]



![[+]](images/collapse_collapsed.gif)


