我最近从笔记本电脑中删除了 Windows,并安装了 Ubuntu 以将其用作主操作系统(除 Ubuntu 外没有安装其他操作系统)。所以我现在想删除 Ubuntu。我不想在笔记本电脑上安装任何操作系统。我该怎么做?
答案1
只需从硬盘中删除所有分区和数据即可。
您可以制作一个包含磁盘管理器的可启动 USB,如gparted
,或者只使用 GUI 工具,如“磁盘在实时 Ubuntu 会话中选择“尝试 Ubuntu“从 Ubuntu 安装媒体启动时。您甚至可以使用 Windows 可启动 USB 中的磁盘格式化工具。
答案2
如果要删除所有分区,可以从实时 USB 启动并运行fdisk -l
以查找硬盘,然后运行fdisk /dev/sdX
并键入o
以创建新的 MBR 分区表。如果要GPT
分区表,则必须运行gdisk /dev/sdX
并键入o
以创建新的 GPT 分区表。要写入并退出,请键入w
。要中止写入q
。
例如
# fdisk -l
Disk /dev/sda: 149.05 GiB, 160041885696 bytes, 312581808 sectors
Disk model:
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: gpt
Disk identifier: 457A8416-1E69-4BB7-B84A-E731240D648E
Device Start End Sectors Size Type
/dev/sda1 2048 18431 16384 8M BIOS boot
/dev/sda2 18432 1067007 1048576 512M EFI System
/dev/sda3 1067008 273696767 272629760 130G Linux filesystem
/dev/sda4 273696768 312581774 38885007 18.5G Linux swap
Disk /dev/sdb: 30.05 GiB, 32262586368 bytes, 63012864 sectors
Disk model: USB Flash Disk
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: 0x63a44614
Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 0 2543423 2543424 1.2G 0 Empty
/dev/sdb2 172 131243 131072 64M ef EFI (FAT-12/16/32)
/dev/sda
是硬盘(150 GB)并且/dev/sdb
是 USB。
# fdisk /dev/sda
Welcome to fdisk (util-linux 2.36).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): o
Created a new DOS disklabel with disk identifier 0x5bd5b3e4.
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
创建 MBR 分区表。
# gdisk /dev/sda
GPT fdisk (gdisk) version 1.0.5
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): o
This option deletes all partitions and creates a new protective MBR.
Proceed? (Y/N): y
Command (? for help): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/sda.
The operation has completed successfully.
创建 GPT 分区表。
数据仍然可以恢复(/在磁盘上),但不会显示在您的文件管理器中。如果您想永久删除它(/用随机数据覆盖它),您可以使用fdisk -l
查找硬盘并使用用dd if=/dev/urandom of=/dev/sdX status=progress
随机数据覆盖它,然后将其fdisk
用于 MBR 分区表和gdisk
GPT 分区表(见上文)
例如:
/dev/sda
是硬盘
# dd if=/dev/urandom of=/dev/sda status=progress
150000000000 bytes (139 GB, 150 GiB) copied, 882 s, 170 MB/s
292968750+0 records in
292968750+0 records out
150000000000 bytes (139 GB, 150 GiB) copied, 882.35294 s, 170 MB/s
用随机数据覆盖
请参阅上文创建分区表