다른 컴퓨터에서 드라이브를 ext4로 포맷합니다. 다른 컴퓨터에 설치할 수 없습니다

다른 컴퓨터에서 드라이브를 ext4로 포맷합니다. 다른 컴퓨터에 설치할 수 없습니다

그래서 Ubuntu 데스크탑에서 파티션된 ext4 드라이브를 포맷했습니다.

데비안을 실행하는 다른 컴퓨터에 연결했지만 설치할 수 없습니다.

문제를 해결하는 방법에 대한 아이디어가 있습니까?

몇가지 정보:

=> sudo mount -t ext4 /dev/sda1 /media/myuser/storage/
mount: wrong fs type, bad option, bad superblock on /dev/sda1,
       missing codepage or helper program, or other error

       In some cases useful info is found in syslog - try
       dmesg | tail or so.


root@mydesktop2:/home/myuser/scripts/system# tail /var/log/messages
Feb 24 13:30:31 mydesktop2 kernel: [ 5577.110672] EXT4-fs (sda1): bad geometry: block count 244190390 exceeds size of device (244190389 blocks)

root@mydesktop2:/home/myuser/scripts/system# fdisk /dev/sda

Welcome to fdisk (util-linux 2.29.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Command (m for help): p
Disk /dev/sda: 931.5 GiB, 1000204885504 bytes, 1953525167 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x276b2fc9

Device     Boot Start        End    Sectors   Size Id Type
/dev/sda1        2048 1953525167 1953523120 931.5G 83 Linux

Command (m for help):

답변1

이 문제는 커널이 파티션 크기를 결정하는 방식의 차이로 인해 발생한 것으로 보입니다. 드라이브를 Ubuntu 시스템에 다시 연결하면 resize2fsDebian 커널에 설치할 수 있도록 파일 시스템을 청크별로 축소할 수 있습니다.

resize2fs /dev/sda1 244190389

관련 정보