Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: this_feature_currently_requires_accessing_site_using_safari
Naja, wenn, dann wären eher 64 Gib korrekt, aber da das keine gesetzliche Einheit ist, müssten es ja 68,7 GB (Brutto) sein ... aber lassen wir das Thema. ><Eigentlich ist ja Adata der einzige Hersteller der es korrekt angibt.
intel x-25M 80GB
Total time: 24,37
Total time: 41,18
Total time: 25,40
Total time: 30,50
Total time: 27,79
Total time: 23,69
Total time: 24,24
Total time: 32,06
Total time: 36,03
Total time: 24,47
Total time: 22,06
Total time: 27,76
Total time: 33,19
Total time: 57,66
Total time: 30,93
Total time: 35,87
Total time: 28,33
Total time: 22,12
Total time: 23,47
Total time: 28,65
Sandforce
Total time: 32,43
Total time: 21,15
Total time: 20,52
Total time: 18,24
Total time: 27,90
Total time: 18,95
Total time: 20,64
Total time: 26,76
Total time: 21,48
Total time: 21,74
Total time: 25,36
Total time: 19,11
Total time: 22,11
Total time: 21,04
Total time: 17,73
Total time: 21,17
Total time: 26,80
Total time: 18,15
Total time: 18,61
Total time: 25,56
ramdrive
Total time: 09,37
Total time: 09,41
Total time: 09,32
Total time: 09,38
Total time: 09,40
Total time: 09,38
Total time: 09,34
Total time: 09,36
Total time: 09,39
Total time: 09,33
Total time: 09,34
Total time: 09,38
Total time: 09,32
Total time: 09,35
Total time: 09,39
Total time: 09,44
Total time: 09,34
Total time: 09,41
Total time: 09,23
Total time: 09,48
SATA-hdd
Total time: 0:01:04,54
Total time: 0:01:10,60
Total time: 0:01:15,34
Total time: 0:01:30,50
Total time: 0:01:10,34
Total time: 0:01:18,85
Total time: 0:01:15,62
Total time: 0:01:23,57
Total time: 0:01:07,89
Total time: 0:01:15,04
Total time: 0:01:18,99
Total time: 0:01:02,54
Total time: 0:01:19,44
Total time: 0:01:16,85
Total time: 0:01:11,86
Total time: 0:01:02,69
Total time: 0:01:12,28
Total time: 0:01:10,46
Total time: 0:01:05,09
Total time: 0:01:07,45
usb-hdd
Total time: 0:01:44,69
Total time: 0:01:42,97
Total time: 0:01:47,74
Total time: 0:01:53,18
Total time: 0:01:57,03
Total time: 0:01:56,77
Total time: 0:02:01,50
Total time: 0:01:59,89
Total time: 0:02:00,88
Total time: 0:01:59,82
Total time: 0:02:02,08
Total time: 0:02:01,10
Total time: 0:02:00,51
Total time: 0:02:01,29
Total time: 0:02:02,56
Total time: 0:02:00,62
Total time: 0:02:01,36
Total time: 0:02:03,66
Total time: 0:01:58,79
Total time: 0:01:59,62
for /L %%N IN (1, 1, 20) DO (
bench.bat
)
@echo off
@rem --------------------------------------------
setlocal ENABLEEXTENSIONS
set start_time=%time%
echo Beginning at: %start_time%
echo Running Timed Batch File
echo.
@rem DO YOUR WORK HERE -- see "call"
call userscript.bat %*
set stop_time=%time%
echo.
echo Timed Batch File Completed
echo Start time: %start_time%
echo Stop time : %stop_time%
set TEMPRESULT=%start_time:~0,2%
call:FN_REMOVELEADINGZEROS
set start_hour=%TEMPRESULT%
@rem
set TEMPRESULT=%start_time:~3,2%
call:FN_REMOVELEADINGZEROS
set start_min=%TEMPRESULT%
@rem
set TEMPRESULT=%start_time:~6,2%
call:FN_REMOVELEADINGZEROS
set start_sec=%TEMPRESULT%
@rem
set TEMPRESULT=%start_time:~9,2%
call:FN_REMOVELEADINGZEROS
set start_hundredths=%TEMPRESULT%
set TEMPRESULT=%stop_time:~0,2%
call:FN_REMOVELEADINGZEROS
set stop_hour=%TEMPRESULT%
@rem
set TEMPRESULT=%stop_time:~3,2%
call:FN_REMOVELEADINGZEROS
set stop_min=%TEMPRESULT%
@rem
set TEMPRESULT=%stop_time:~6,2%
call:FN_REMOVELEADINGZEROS
set stop_sec=%TEMPRESULT%
@rem
set TEMPRESULT=%stop_time:~9,2%
call:FN_REMOVELEADINGZEROS
set stop_hundredths=%TEMPRESULT%
set /A start_total=(((((%start_hour%*60)+%start_min%)*60)+%start_sec%)*100)+%start_hundredths%
set /A stop_total=(((((%stop_hour%*60)+%stop_min%)*60)+%stop_sec%)*100)+%stop_hundredths%
set /A total_time=%stop_total% - %start_total%
set /A total_hundredths=%total_time% %% 100
set total_hundredths=00%total_hundredths%
set total_hundredths=%total_hundredths:~-2%
set /A total_time=%total_time% / 100
set /A total_sec="%total_time% %% 60"
set total_sec=00%total_sec%
set total_sec=%total_sec:~-2%
set /A total_time=%total_time% / 60
set /A total_min="%total_time% %% 60"
set total_min=00%total_min%
set total_min=%total_min:~-2%
set /A total_time=%total_time% / 60
set /A total_hour="%total_time% %% 60"
@rem Handle if it wrapped around over midnight
if "%total_hour:~0,1%"=="-" set /A total_hour=%total_hour% + 24
echo Total time: %total_hour%:%total_min%:%total_sec%.%total_hundredths%
echo Total time: %total_hour%:%total_min%:%total_sec%.%total_hundredths% >>zeiten.txt
@rem --------------------------------------------
@rem Exit the BAT Program
endlocal
goto END
@rem --------------------------------------------
@rem FN_REMOVELEADINGZEROS function
@rem Used to remove leading zeros from Decimal
@rem numbers so they are not treated as Octal.
:FN_REMOVELEADINGZEROS
if "%TEMPRESULT%"=="0" goto END
if "%TEMPRESULT:~0,1%" NEQ "0" goto END
set TEMPRESULT=%TEMPRESULT:~1%
goto FN_REMOVELEADINGZEROS
@rem --------------------------------------------
@rem BAT PROGRAM / FUNCTION FILE EXIT
:END
echo .
echo uncompress eclipse
7z x inkscape_R10017-1101262125.7z >nul
echo .
echo uncompress eclipse
7z x eclipse-SDK-3.6.1-win32-x86_64.zip >nul
mkdir test
echo .
echo xcopy eclipse to test
xcopy eclipse test /E/Q/J
echo .
echo xcopy inscape to test
xcopy inkscape test /E/Q/J
echo .
echo compress eclipse
7z a eclipse_neu.7z eclipse/ -mx0 >nul
echo .
echo compress inkscape
7z a inkscape_neu.7z inkscape/ -mx0 >nul
echo .
echo deleting files
del eclipse_neu.7z /Q
del inkscape_neu.7z /Q
rmdir test /S /Q
rmdir eclipse /S /Q
rmdir inkscape /S /Q
pinki schrieb:wobei die 7% OP erstmal nur zweitrangig interessieren, ich will ja wissen wieviel nutzbaren speicher ich hab und da geh ich nunmal von den normalen 7% aus und nicht davon das ich davon nochmal 7% abziehen muss.
Richtig hin oder her, für den kunden nur schwer verständlich das er sich ne 64 GB S599 kauft und dann nur 55,9 GB nutzbar hat wo er doch mit 59,x rechnet
Also meine 3 zeigen alle 55,9GB an. Die 2 davor auch.also bei mir zeigt windows7 nur 53,4gb nutzbaren speicherplatz an 0.o
Da fällt mir konkret das Beispiel mit den A-DATA S599 SSDs ein. Auch diese SSDs haben letztendlich nur 7% OP
Jup, ~7% Umrechnung von GB auf GiB + 7% OP
sagen wir mal so... das OCZ hier mitten im selben produkt, plötzlich weniger nutzbaren speicher hat ohne das zu kennzeichnen, nein, nichtmal anzukündigen ode sonst was, heimlich still und leise, sozusagen, dürfte einigen käufern übel aufsteigen und ich bin mir nicht sicher ob se sich damit wirklich nen gefallen tun.
Gerade OCZ wo ja eh gern zig modelle raus bringtn mit zig unterschiedlichen namen, hält es bei so etwas dann nicht für nötig den namen für die Vertex2 mit 25nm flash zu ändern? das ist nur schwer nachvollziehbar.
Da ham se Vertex 2, Vertex 2 Extended, Agility2, Onyx2 und und und, damit der käufer ja mit OCZ produkten erschlagen wird und gerade bei solch nem drastischen einschnitt (geringere leistung + geringere kapazität) ändert sich nix, im gegenteil wird nichtmal irgendwo gekennzeichnet... wie gesagt, OCZ wird mir immer unsympathischer.
Allerdings habe ich so die befürchtung das auch die anderen SF Hersteller dem vorbild von OCZ folgen werden, sonst gäbs nen wettbewerbs nachteil für die anderen
wobei wirs ja vor kurzem erst davon hatten das die letzten paar firmware updates eh net wirklich was geändert haben
DoubleJ schrieb:NEIN, alle SF-1200 SSDs haben 13% (oder 28%) OP! Es gibt keine SandForce SSDs mit 7% OP.
SSDfix schrieb:Kleines Add-On: wir haben auch auf die Wünsche unserer Kunden gehört und ab jetzt müssten unseren SSD mit der neuen Verpackung im Handel sein, die nun auch mit 2,5" -> 3,5" Einbaurahmen ausgeliefert werden.
400 GB SSD.....ich hab vorhin nochmal ein vorserien modell der 480 bzw 400GB 25nm Version gebencht und 4K war nicht so doll.
das ist es wohl was gemeint ist mit 4K ist deutlich schwächer wobei es wohl bei 64-4k deutlicher ist
Meine neue OCZ Vertex 2 v1.28 ab Werk.
Sind die Daten soweit okay?
Danke für die nicht beantwortete Frage
Indirekt ists beantwortet... ist OK aber die 4k bzw 64-4k und der write ist etwas niedrig, aber das ist wohl bei den neuen Vertex2 mit 25nm Nand normal.
Nen ATTO bench und ein AS Kompressions bench wären mal interessant mit der Vertex2 mit 25nm Nand
bei optimaler komprimierbarkeit (ATTO) und beim AS Kompressions Bench scheinen die werte vergleichbar zur Vertex2 mit 32 Nand
Read ist hier sogar recht gut (AS Kompressions Bench)
Wenn du grad bei bist, mach doch grad noch nen AS Kopierbench