Linux Lite Installation
wget http://repo.linuxliteos.com/linuxlite/isos/5.6/linux-lite-5.6-64bit.iso
--2021-11-21 11:11:49-- http://repo.linuxliteos.com/linuxlite/isos/5.6/linux-lite-5.6-64bit.iso
Resolving repo.linuxliteos.com (repo.linuxliteos.com)... 147.75.35.134
Connecting to repo.linuxliteos.com (repo.linuxliteos.com)|147.75.35.134|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1493172224 (1.4G) [application/x-iso9660-image]
--2021-11-21 11:11:49-- http://repo.linuxliteos.com/linuxlite/isos/5.6/linux-lite-5.6-64bit.iso
Resolving repo.linuxliteos.com (repo.linuxliteos.com)... 147.75.35.134
Connecting to repo.linuxliteos.com (repo.linuxliteos.com)|147.75.35.134|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1493172224 (1.4G) [application/x-iso9660-image]
Saving to: ‘linux-lite-5.6-64bit.iso’
2021-11-21 11:20:59 (2.59 MB/s) - ‘linux-lite-5.6-64bit.iso’ saved [1493172224/1493172224]
$ md5sum linux-lite-5.6-64bit.iso
8c86035c534fe9972cb1e19361e2b58f linux-lite-5.6-64bit.iso
8c86035c534fe9972cb1e19361e2b58f linux-lite-5.6-64bit.iso
$ head linux-lite-5.6-64bit.iso.md5
8c86035c534fe9972cb1e19361e2b58f linux-lite-5.6-64bit.iso
8c86035c534fe9972cb1e19361e2b58f linux-lite-5.6-64bit.iso
$ df -h
Filesystem Size Used Avail Use% Mounted on
...
/dev/sdc1 3.8G 351M 3.4G 10% /media/at/KINGSTON
Filesystem Size Used Avail Use% Mounted on
...
/dev/sdc1 3.8G 351M 3.4G 10% /media/at/KINGSTON
WRONG:
$ sudo dd if=linux-lite-5.6-64bit.iso of=/dev/sdc1 bs=4M
[sudo] password for at:
356+0 records in
356+0 records out
1493172224 bytes (1.5 GB, 1.4 GiB) copied, 104.317 s, 14.3 MB/s
[sudo] password for at:
356+0 records in
356+0 records out
1493172224 bytes (1.5 GB, 1.4 GiB) copied, 104.317 s, 14.3 MB/s
RIGHT:
$ sudo dd if=linux-lite-5.6-64bit.iso of=/dev/sdc bs=4M status=progress oflag=sync
[sudo] password for at:
1493172224 bytes (1.5 GB, 1.4 GiB) copied, 281 s, 5.3 MB/s
356+0 records in
356+0 records out
1493172224 bytes (1.5 GB, 1.4 GiB) copied, 281.407 s, 5.3 MB/s
[sudo] password for at:
1493172224 bytes (1.5 GB, 1.4 GiB) copied, 281 s, 5.3 MB/s
356+0 records in
356+0 records out
1493172224 bytes (1.5 GB, 1.4 GiB) copied, 281.407 s, 5.3 MB/s
Comments
Post a Comment