ISO file size correct?
up vote
0
down vote
favorite
I tried to download Ubuntu 18.04 Desktop 64 bit, and got 3 ISO images named:
ubuntu-18.04.1-desktop-amd64.iso
ubuntu-18.04.1-desktop-amd64 (1).iso
ubuntu-18.04.1-desktop-amd64 (2).iso
all with file size 2.0 GB (1,953,349,632 bytes).
Questions - Does this seem correct, and do I just use one?
Thank you,
J2B
software-installation
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
I tried to download Ubuntu 18.04 Desktop 64 bit, and got 3 ISO images named:
ubuntu-18.04.1-desktop-amd64.iso
ubuntu-18.04.1-desktop-amd64 (1).iso
ubuntu-18.04.1-desktop-amd64 (2).iso
all with file size 2.0 GB (1,953,349,632 bytes).
Questions - Does this seem correct, and do I just use one?
Thank you,
J2B
software-installation
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
See: tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu#0
– Terrance
3 hours ago
1
You only use one. It looks like you downloaded it 3 times.
– Terrance
3 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I tried to download Ubuntu 18.04 Desktop 64 bit, and got 3 ISO images named:
ubuntu-18.04.1-desktop-amd64.iso
ubuntu-18.04.1-desktop-amd64 (1).iso
ubuntu-18.04.1-desktop-amd64 (2).iso
all with file size 2.0 GB (1,953,349,632 bytes).
Questions - Does this seem correct, and do I just use one?
Thank you,
J2B
software-installation
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I tried to download Ubuntu 18.04 Desktop 64 bit, and got 3 ISO images named:
ubuntu-18.04.1-desktop-amd64.iso
ubuntu-18.04.1-desktop-amd64 (1).iso
ubuntu-18.04.1-desktop-amd64 (2).iso
all with file size 2.0 GB (1,953,349,632 bytes).
Questions - Does this seem correct, and do I just use one?
Thank you,
J2B
software-installation
software-installation
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 3 hours ago
j2b
41
41
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
j2b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
See: tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu#0
– Terrance
3 hours ago
1
You only use one. It looks like you downloaded it 3 times.
– Terrance
3 hours ago
add a comment |
See: tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu#0
– Terrance
3 hours ago
1
You only use one. It looks like you downloaded it 3 times.
– Terrance
3 hours ago
See: tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu#0
– Terrance
3 hours ago
See: tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu#0
– Terrance
3 hours ago
1
1
You only use one. It looks like you downloaded it 3 times.
– Terrance
3 hours ago
You only use one. It looks like you downloaded it 3 times.
– Terrance
3 hours ago
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
This seems to be correct. If you want to be 100% sure you can check the md5sum of the file. Open a new terminal and execute:
md5sum ubuntu-18.04.1-desktop-amd64.iso
Then compare the received value with the value provided in the file MD5SUMS from the download page of Ubuntu 18.04.1 LTS (Bionic Beaver).
Download that file and then use the md5sum command with -compare option to do this check:
wget http://releases.ubuntu.com/18.04.1/MD5SUMS
md5sum -c MD5SUMS
md5sumwill generate a bunch of warnings. Don't worry: the OK message will be buried somewhere within it!
Example (with suppressed error messages):
$ ls -l | grep 'ubuntu.*iso|MD5SUMS'
-rw-rw-r-- 1 spas spas 138 юли 26 19:56 MD5SUMS
-rw-rw-r-- 1 spas spas 1953349632 ное 27 01:01 ubuntu-18.04.1-desktop-amd64.iso
$ md5sum -c MD5SUMS 2>&1 | grep 'OK'
ubuntu-18.04.1-desktop-amd64.iso: OK
Thanks @Kulfy, I've updated the answer. In the downloaded fileMD5SUMShave more than one md5sums and the command will output some error messages, by using of2>/dev/nullthese error messages will be suppressed.
– pa4080
2 hours ago
+1 for suppression ;)
– Kulfy
2 hours ago
add a comment |
up vote
1
down vote
This is a very bad idea to determine whether the ISO is correct is or not by merely looking at the file size. Since your file size is 1,953,349,632 bytes which is approximately 1.8 GB can be legit or not. The proper way to check whether the downloaded file is correct or not is using Checksum.
The original file checksum can be obtained from Ubuntu Releases under corresponding release folder and the checksum of the downloaded file (here ISO) can be calculated using below commands on Ubuntu/Linux and whether the file is legit or not can be determined by comparing the same.
For MD5SUMS:
md5sum ISOName
For SHA1SUMS:
sha1sum ISOName
For SHA256SUMS:
sha256sum ISOName
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
This seems to be correct. If you want to be 100% sure you can check the md5sum of the file. Open a new terminal and execute:
md5sum ubuntu-18.04.1-desktop-amd64.iso
Then compare the received value with the value provided in the file MD5SUMS from the download page of Ubuntu 18.04.1 LTS (Bionic Beaver).
Download that file and then use the md5sum command with -compare option to do this check:
wget http://releases.ubuntu.com/18.04.1/MD5SUMS
md5sum -c MD5SUMS
md5sumwill generate a bunch of warnings. Don't worry: the OK message will be buried somewhere within it!
Example (with suppressed error messages):
$ ls -l | grep 'ubuntu.*iso|MD5SUMS'
-rw-rw-r-- 1 spas spas 138 юли 26 19:56 MD5SUMS
-rw-rw-r-- 1 spas spas 1953349632 ное 27 01:01 ubuntu-18.04.1-desktop-amd64.iso
$ md5sum -c MD5SUMS 2>&1 | grep 'OK'
ubuntu-18.04.1-desktop-amd64.iso: OK
Thanks @Kulfy, I've updated the answer. In the downloaded fileMD5SUMShave more than one md5sums and the command will output some error messages, by using of2>/dev/nullthese error messages will be suppressed.
– pa4080
2 hours ago
+1 for suppression ;)
– Kulfy
2 hours ago
add a comment |
up vote
2
down vote
This seems to be correct. If you want to be 100% sure you can check the md5sum of the file. Open a new terminal and execute:
md5sum ubuntu-18.04.1-desktop-amd64.iso
Then compare the received value with the value provided in the file MD5SUMS from the download page of Ubuntu 18.04.1 LTS (Bionic Beaver).
Download that file and then use the md5sum command with -compare option to do this check:
wget http://releases.ubuntu.com/18.04.1/MD5SUMS
md5sum -c MD5SUMS
md5sumwill generate a bunch of warnings. Don't worry: the OK message will be buried somewhere within it!
Example (with suppressed error messages):
$ ls -l | grep 'ubuntu.*iso|MD5SUMS'
-rw-rw-r-- 1 spas spas 138 юли 26 19:56 MD5SUMS
-rw-rw-r-- 1 spas spas 1953349632 ное 27 01:01 ubuntu-18.04.1-desktop-amd64.iso
$ md5sum -c MD5SUMS 2>&1 | grep 'OK'
ubuntu-18.04.1-desktop-amd64.iso: OK
Thanks @Kulfy, I've updated the answer. In the downloaded fileMD5SUMShave more than one md5sums and the command will output some error messages, by using of2>/dev/nullthese error messages will be suppressed.
– pa4080
2 hours ago
+1 for suppression ;)
– Kulfy
2 hours ago
add a comment |
up vote
2
down vote
up vote
2
down vote
This seems to be correct. If you want to be 100% sure you can check the md5sum of the file. Open a new terminal and execute:
md5sum ubuntu-18.04.1-desktop-amd64.iso
Then compare the received value with the value provided in the file MD5SUMS from the download page of Ubuntu 18.04.1 LTS (Bionic Beaver).
Download that file and then use the md5sum command with -compare option to do this check:
wget http://releases.ubuntu.com/18.04.1/MD5SUMS
md5sum -c MD5SUMS
md5sumwill generate a bunch of warnings. Don't worry: the OK message will be buried somewhere within it!
Example (with suppressed error messages):
$ ls -l | grep 'ubuntu.*iso|MD5SUMS'
-rw-rw-r-- 1 spas spas 138 юли 26 19:56 MD5SUMS
-rw-rw-r-- 1 spas spas 1953349632 ное 27 01:01 ubuntu-18.04.1-desktop-amd64.iso
$ md5sum -c MD5SUMS 2>&1 | grep 'OK'
ubuntu-18.04.1-desktop-amd64.iso: OK
This seems to be correct. If you want to be 100% sure you can check the md5sum of the file. Open a new terminal and execute:
md5sum ubuntu-18.04.1-desktop-amd64.iso
Then compare the received value with the value provided in the file MD5SUMS from the download page of Ubuntu 18.04.1 LTS (Bionic Beaver).
Download that file and then use the md5sum command with -compare option to do this check:
wget http://releases.ubuntu.com/18.04.1/MD5SUMS
md5sum -c MD5SUMS
md5sumwill generate a bunch of warnings. Don't worry: the OK message will be buried somewhere within it!
Example (with suppressed error messages):
$ ls -l | grep 'ubuntu.*iso|MD5SUMS'
-rw-rw-r-- 1 spas spas 138 юли 26 19:56 MD5SUMS
-rw-rw-r-- 1 spas spas 1953349632 ное 27 01:01 ubuntu-18.04.1-desktop-amd64.iso
$ md5sum -c MD5SUMS 2>&1 | grep 'OK'
ubuntu-18.04.1-desktop-amd64.iso: OK
edited 2 hours ago
answered 3 hours ago
pa4080
12.9k52460
12.9k52460
Thanks @Kulfy, I've updated the answer. In the downloaded fileMD5SUMShave more than one md5sums and the command will output some error messages, by using of2>/dev/nullthese error messages will be suppressed.
– pa4080
2 hours ago
+1 for suppression ;)
– Kulfy
2 hours ago
add a comment |
Thanks @Kulfy, I've updated the answer. In the downloaded fileMD5SUMShave more than one md5sums and the command will output some error messages, by using of2>/dev/nullthese error messages will be suppressed.
– pa4080
2 hours ago
+1 for suppression ;)
– Kulfy
2 hours ago
Thanks @Kulfy, I've updated the answer. In the downloaded file
MD5SUMS have more than one md5sums and the command will output some error messages, by using of 2>/dev/null these error messages will be suppressed.– pa4080
2 hours ago
Thanks @Kulfy, I've updated the answer. In the downloaded file
MD5SUMS have more than one md5sums and the command will output some error messages, by using of 2>/dev/null these error messages will be suppressed.– pa4080
2 hours ago
+1 for suppression ;)
– Kulfy
2 hours ago
+1 for suppression ;)
– Kulfy
2 hours ago
add a comment |
up vote
1
down vote
This is a very bad idea to determine whether the ISO is correct is or not by merely looking at the file size. Since your file size is 1,953,349,632 bytes which is approximately 1.8 GB can be legit or not. The proper way to check whether the downloaded file is correct or not is using Checksum.
The original file checksum can be obtained from Ubuntu Releases under corresponding release folder and the checksum of the downloaded file (here ISO) can be calculated using below commands on Ubuntu/Linux and whether the file is legit or not can be determined by comparing the same.
For MD5SUMS:
md5sum ISOName
For SHA1SUMS:
sha1sum ISOName
For SHA256SUMS:
sha256sum ISOName
add a comment |
up vote
1
down vote
This is a very bad idea to determine whether the ISO is correct is or not by merely looking at the file size. Since your file size is 1,953,349,632 bytes which is approximately 1.8 GB can be legit or not. The proper way to check whether the downloaded file is correct or not is using Checksum.
The original file checksum can be obtained from Ubuntu Releases under corresponding release folder and the checksum of the downloaded file (here ISO) can be calculated using below commands on Ubuntu/Linux and whether the file is legit or not can be determined by comparing the same.
For MD5SUMS:
md5sum ISOName
For SHA1SUMS:
sha1sum ISOName
For SHA256SUMS:
sha256sum ISOName
add a comment |
up vote
1
down vote
up vote
1
down vote
This is a very bad idea to determine whether the ISO is correct is or not by merely looking at the file size. Since your file size is 1,953,349,632 bytes which is approximately 1.8 GB can be legit or not. The proper way to check whether the downloaded file is correct or not is using Checksum.
The original file checksum can be obtained from Ubuntu Releases under corresponding release folder and the checksum of the downloaded file (here ISO) can be calculated using below commands on Ubuntu/Linux and whether the file is legit or not can be determined by comparing the same.
For MD5SUMS:
md5sum ISOName
For SHA1SUMS:
sha1sum ISOName
For SHA256SUMS:
sha256sum ISOName
This is a very bad idea to determine whether the ISO is correct is or not by merely looking at the file size. Since your file size is 1,953,349,632 bytes which is approximately 1.8 GB can be legit or not. The proper way to check whether the downloaded file is correct or not is using Checksum.
The original file checksum can be obtained from Ubuntu Releases under corresponding release folder and the checksum of the downloaded file (here ISO) can be calculated using below commands on Ubuntu/Linux and whether the file is legit or not can be determined by comparing the same.
For MD5SUMS:
md5sum ISOName
For SHA1SUMS:
sha1sum ISOName
For SHA256SUMS:
sha256sum ISOName
edited 2 hours ago
pa4080
12.9k52460
12.9k52460
answered 3 hours ago
Kulfy
2,19621033
2,19621033
add a comment |
add a comment |
j2b is a new contributor. Be nice, and check out our Code of Conduct.
j2b is a new contributor. Be nice, and check out our Code of Conduct.
j2b is a new contributor. Be nice, and check out our Code of Conduct.
j2b is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1096312%2fiso-file-size-correct%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See: tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu#0
– Terrance
3 hours ago
1
You only use one. It looks like you downloaded it 3 times.
– Terrance
3 hours ago