HD GB conversions


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users HD GB conversions
# 1  
Old 01-20-2014
HD GB conversions

Sorry if this is in the wrong area. I am not sure where to put this question.

HD manufacturers usually use the 1000 scale for measuring their HD capacity instead of 1024 which is way more common with computers. What would 750 GB on the 1000 scale convert to on the 1024 scale and how would you go about solving this?
# 2  
Old 01-20-2014
Code:
750*1000^3/1024^3
750/1.024^3


Last edited by Scott; 01-20-2014 at 06:07 AM.. Reason: Had MB, not GB
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Vi line endings conversions

I was reading these 2 articles. Why does the wikia one think :e ++ff=dos? Or am I just misunderstanding it? :e ++ff=unix :e ++ff=dos File format - Vim Tips Wiki Managing/Munging Line-Endings with Vi/Vim | Jeet Sukumaran (1 Reply)
Discussion started by: cokedude
1 Replies

2. Shell Programming and Scripting

Unix to Linux Conversions?

I have over 800 scripts (Korn and Perl) wrote on a Unix platform (Solaris) that I need to covert to a Linux platform (Redhat). All the path's and binaries need review. Are there any tools out there that would simplify or assist me with this conversion? (3 Replies)
Discussion started by: soupbone38
3 Replies

3. Shell Programming and Scripting

Perl date conversions

Is there a perl date conversion that will convert this type of date: 2008/100:01:56:10.000 to this type of date: 2008 04 09 01 56 10 000 I am using this right now: sub jd2date { $space=" "; $zero="0"; my ($jd) = @_; if (($jd<1) || ($jd>782028)) { print "julian... (5 Replies)
Discussion started by: ajgwin
5 Replies

4. UNIX for Advanced & Expert Users

Time Calculations & Conversions

I have script that runs based on time variables passed in the command line. The first command argument is a timer, in seconds, of how often to execute a certain loop in the script. The second command argument is the end time of the script, in military time. Below is an example of the command line:... (1 Reply)
Discussion started by: Nysif Steve
1 Replies
Login or Register to Ask a Question