cancel
Showing results for 
Search instead for 
Did you mean: 

UNIX-urgent

Former Member
0 Kudos

I have placed a huge file in the UNIX Directory.

I need to find out "The Size on Disk " for this file.

I dont know any BASIS guy here. You know anyone ??

The following is the File name, the length in Bytes, system, date & time.

BSEG_15032007.ASC 42,109,358 e7padm 16.03.2007 16:35:42

The problem I facing is:: Due to the size , the file is not displayed, and all the jobs I had scheduled have failed till now.

So I am unable to download to my PC.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Well,You can use given below commands

du -sk *|sort -rn

Which will give you good idea about size of files in your current dir or filesystem.

Try to avoice this command on root dir as it takes long time to reply.

You can compress the file by using compress command.

I hope this will help you.

Regards

Sukrut S

Former Member
0 Kudos

Hi

you can check your disk utilization by using following command

du -k| sort -rn

and also you can use bdf .

under the FS where you located your BIG file.

Also you need to enable big file option for reading / moving BIG files in to / out of any FS.

-- Murali.

Former Member
0 Kudos

your file BSEG_15032007.ASC size is 42 MB. you can find the disk utilization using df -k command. If you want you can move this file to another location or increase the diskspace if disk (mountpoint) is full.

Cheers,

-Sunil

former_member204746
Active Contributor
0 Kudos

use FTP to transfer from Unix to your PC using BINARY mode.