When the original operating system of a cloud server cannot start normally, you can enter Rescue Mode, mount the original system disk, and back up important data. This document explains how to perform these operations in Linux and Windows rescue systems.
Rescue Mode (Linux Rescue Mode) is a temporary maintenance system provided for cloud servers. After a server enters Rescue Mode, it no longer starts from the original system disk. Instead, it starts from an independent rescue image. Even if the original operating system cannot start normally, you can inspect disks, mount the original system partition, and recover important data.
Rescue Mode is commonly used in the following situations:

Figure 1: Entering Rescue Mode from the control panel
When logging in through SSH, use the rescue system IP address, port, and username displayed in the control panel, and enter the temporary password you just set. Refer to the control panel for the exact login information.
Open a terminal in GMSSH and run the following command to view the disks, file systems, and mount points:
lsblk -f
To view disk capacities at the same time, run:
lsblk -o NAME,SIZE,FSTYPE,LABEL,UUID,MOUNTPOINTS

Figure 2: Viewing disks and partitions using the lsblk command
Example output:
NAME FSTYPE LABEL UUID MOUNTPOINT
sr0 iso9660 cidata 2026-08-27-16-36-38-00
vda
└─vda1 xfs 395b9844-e404-4857-afbb-c6edccaf72f3 /
vdb
└─vdb1 xfs 44a6a613-4e21-478b-a909-ab653c9d39df
In the example above, /dev/vda1 is mounted at the rescue system's root directory, /. The unmounted /dev/vdb1 is likely the original system partition.
vda, vdb, sda, or nvme0n1. Do not identify the original system disk based only on its device name. Confirm it by considering its capacity, file system, partition structure, and current mount points together.First, create a mount directory:
mkdir -p /mnt/system
If the original system partition uses XFS (/dev/vdb1 in this example), it is recommended that you mount it in read-only mode without replaying the log:
mount -t xfs -o ro,norecovery /dev/vdb1 /mnt/system
If an XFS duplicate UUID message appears, try:
mount -t xfs -o ro,norecovery,nouuid /dev/vdb1 /mnt/system
If the original system partition uses ext4, run:
mount -t ext4 -o ro,noload /dev/vdb1 /mnt/system
Replace /dev/vdb1 in the commands with the original system partition you have identified. If the original system uses LVM, disk encryption, or RAID, you must first activate or unlock the corresponding device and then mount the file system it contains.
Run the following commands:
findmnt /mnt/system
ls -lah /mnt/system
If you can see original system directories such as etc, home, root, usr, and var, the partition has been mounted successfully.
In the GMSSH visual file panel, open the /mnt/system directory, select the files or directories to be backed up, and download them to your local device. It is recommended that you prioritize the following data:

Figure 3: Downloading backup data through the GMSSH file panel
After the download is complete, check locally whether the files can be opened normally and confirm that all important directories have been saved. To unmount the original system partition, run:
umount /mnt/system
Log in to the Windows rescue system through Remote Desktop, and then open Disk Management using either of the following methods:
Win + R, enter diskmgmt.msc, and then press Enter.Locate the original system disk in Disk Management. You can identify it based on the disk capacity, number of partitions, and partition sizes.
If the disk is shown as Offline, right-click the area on the left that displays information such as Disk 1 or Disk 2, and then select Online.

Figure 4: Bringing the original system disk online in Windows Disk Management
After the disk is online, check the drive letter assigned to the partition by the system. For example, if the original system partition is shown as D:, open File Explorer → This PC → Local Disk (D:), and then copy or download the files to be backed up.
If the partition does not have a drive letter, right-click it in Disk Management, select Change Drive Letter and Paths, and temporarily assign an unused drive letter. Do not format the partition.
It is recommended that you prioritize important content such as the Desktop, Documents, website directories, application data, database backups, and business configuration files. After the backup is complete, check that the files are intact and can be opened normally.
fsck, xfs_repair, or chkdsk unless you have completed the backup and fully understand the risks.If you cannot identify the original system disk, the partition cannot be mounted, the disk displays an unusual message, or the data is extremely important, stop further operations and contact your technical personnel or operations engineer.
Current system time:2026-08-28 13:39:42(UTC+8) Privacy PolicyRegistrants' Benefits And Responsibilities SpecificationsRegistrant Educational Information
Copyright© 2026 GNAME.COM. All rights reserved. Non-Public Registrant Data (NPRD) Disclosure