私はこれを持っています:
###########################
# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 20G 2.1G 17G 12% /
devtmpfs 2.0G 0 2.0G 0% /dev
tmpfs 2.0G 0 2.0G 0% /dev/shm
tmpfs 2.0G 34M 1.9G 2% /run
tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
###########################
# fdisk -l
Disk /dev/sda: 2000.4 GB, 2000398934016 bytes, 3907029168 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
Disk label type: dos
Disk identifier: 0x00044686
Device Boot Start End Blocks Id System
/dev/sda1 * 4096 40962047 20478976 83 Linux
/dev/sda2 40962048 42008575 523264 82 Linux swap / Solaris
###########################
# mount
/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
devtmpfs on /dev type devtmpfs (rw,relatime,size=2009752k,nr_inodes=502438,mode=755)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw)
devpts on /dev/pts type devpts (rw,relatime,mode=600,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)
tmpfs on /sys/fs/cgroup type tmpfs (rw,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=27,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)
mqueue on /dev/mqueue type mqueue (rw,relatime)
configfs on /sys/kernel/config type configfs (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)
###########################
(parted) print
Model: ATA HGST HUS724020AL (scsi)
Disk /dev/sda: 2000GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
1 2097kB 21.0GB 21.0GB primary ext4 boot
2 21.0GB 21.5GB 536MB primary linux-swap(v1)
ご覧のとおり、2Tb HDDはルート用の20Gbとスワップ用に少し分かれています。すべてのサービスをインストールして構成した後、この問題が見つかりました...今、メインパーティションを拡張したいと思います。私は残りのスペースをその中に入れたくありません/home
。は特定のタスクを実行する小規模な運用サーバーなので、プライマリパーティションにすべてのスペースを確保したいと思います。
問題はグーグルで検索してみると「ライブCDを使う」や「リカバリモードでブート」しか出てこないのですが、それがダメで仕事だけを通過してssh
全部失ってしまうかと心配です。データを再インストールして再インストールする必要があるため、すべてを構成する必要があるため、作業を始める前にすべてを尋ねて台無しにすることをお勧めします。
ベストアンサー1
まあ、私は成功した。具体的な方法は次のとおりです。
スワップパーティションの削除
# swapoff /dev/sda2
それから始めてくださいfdisk
。
# fdisk /dev/sda
Start
最初のパーティションの列を考慮してパーティション情報を一覧表示します。
Command (m for help): p
Device Boot Start End Blocks Id System
/dev/sda1 * 4096 47029167 1903512536 83 Linux
/dev/sda2 47029168 57029167 50000000 83 Linux
2つのパーティションを削除します。
Command (m for help): d
Partition number (1,2, default 2): 2
Partition 1 has been deleted.
Command (m for help): d
Partition number (1): 1
Partition 1 has been deleted.
Start (4096)
新しいサイズで新しいパーティションを作成しましたが、プライマリパーティションから始めました。
Command (m for help): n
Select (default p): p
Partition number (1, default 1): 1
First sector (2048-3907029167, default 2048): 4096 //Important. Notice that is not the same as the default (in my case).
Last sector (default 3907029167): 3807029167 //I've put less to have spare space for partition 2
Command (m for help): n
Select (default p): p
Partition number (2, default 2): 2
First sector (2048-3907029167, default 2048): 3807029168 //Important. Notice that starts with 20148 because is the first empty space detected, but in reality I want it AFTER the first partition, so I've put another number (in my case).
Last sector (default 3907029167): 3907029167
Boot
その後、フラグを設定しましたsda1
。
Command (m for help): a
Partition number (1,2, default 2): 1
その後、再起動して実行します(再起動後)。
# resize2fs /dev/sda1
それでは、すべてが大丈夫です。
################################
# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 1.8T 2.1G 1.7T 1% /
devtmpfs 2.0G 0 2.0G 0% /dev
tmpfs 2.0G 0 2.0G 0% /dev/shm
tmpfs 2.0G 9.5M 2.0G 1% /run
tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
################################
# fdisk -l
Disk /dev/sda: 2000.4 GB, 2000398934016 bytes, 3907029168 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
Disk label type: dos
Disk identifier: 0x00044686
Device Boot Start End Blocks Id System
/dev/sda1 * 4096 3807029167 1903512536 83 Linux
/dev/sda2 3807029168 3907029167 50000000 83 Linux
これで交換を再作成して完了する必要があります。