Ubuntu Based

Restarting Ubuntu System Using Command Line Interface

Restarting Ubuntu System Using Command Line

Learn restarting Ubuntu system using command line interface. Find expert guides on rebooting, scheduling, and recovery. While graphical user interfaces provide point-and-click simplicity, the terminal offers unparalleled control, flexibility, and reliability for system reboots. Whether you’re managing a remote server, troubleshooting a frozen system, or simply prefer the efficiency of command-line operations, mastering various restart methods ensures you can maintain system stability in any situation.

This comprehensive guide covers everything from basic reboot commands to advanced emergency restart techniques, giving you the tools to handle any restart scenario in Ubuntu.

Table of Contents

Why Restart Ubuntu from the Terminal?

The command-line interface offers several advantages over graphical methods when it comes to restarting Ubuntu systems. Understanding these benefits helps system administrators make informed decisions about when to utilize terminal commands for system reboots.

Server Environments Without GUI

Most Ubuntu servers run without graphical interfaces to optimize resources and minimize security vulnerabilities. In such headless environments, command-line restart methods are the only option available. Server administrators must be comfortable with various terminal commands to effectively manage system reboots.

Remote System Administration

When managing Ubuntu systems remotely via SSH, terminal commands are essential for initiating system restarts. This allows administrators to perform maintenance tasks from anywhere in the world without physical access to the machine. Remote rebooting capabilities are particularly valuable in data center environments or for managing distributed infrastructure.

Efficiency and Control

Terminal commands offer precise control over the reboot process, allowing you to specify timing, send notifications to users, and handle special scenarios. The command line is often faster and more reliable than navigating through multiple GUI menus to find restart options. This efficiency is crucial during time-sensitive maintenance windows or when troubleshooting critical issues.

Automation Possibilities

Command-line restart methods can be easily incorporated into scripts and scheduled tasks, enabling automated system maintenance. This automation capability is invaluable for managing large-scale deployments or implementing consistent reboot policies across multiple systems.

System Recovery

When the graphical interface becomes unresponsive due to resource constraints or software issues, terminal commands provide a reliable fallback for restarting the system. Access to the command line can often be maintained even when the GUI has frozen completely.

The Reboot Command: Simplest Method

The reboot command provides the most straightforward approach to restarting an Ubuntu system from the terminal. Its simplicity and reliability make it the go-to option for most system administrators.

Basic Syntax and Usage

To use the reboot command, open your terminal by pressing Ctrl+Alt+T or accessing it through your application menu. Then, simply type:

sudo reboot

The sudo prefix ensures the command runs with the necessary administrative privileges. After execution, you’ll be prompted for your password, and the system will immediately begin the reboot process.

For users with root privileges, the sudo prefix may not be necessary, but it’s generally good practice to include it to avoid permission issues. The command initiates a graceful restart, giving running processes time to close properly before shutting down the system.

Behind the Scenes

When executed, the reboot command sends signals to all running processes, allowing them to save data and terminate gracefully. It then unmounts filesystems, stops running services, and finally restarts the system hardware. This ordered shutdown sequence minimizes the risk of data corruption or filesystem damage.

When to Use Reboot

The reboot command is ideal for standard system restarts when:

  • You need a simple, reliable restart method
  • The system is responsive and functioning normally
  • You want a graceful shutdown of all services
  • You need an immediate restart without delay options

Advantages and Limitations

The primary advantage of the reboot command is its simplicity—it’s easy to remember and requires no additional parameters. However, it lacks some of the flexibility offered by other methods, such as scheduling restarts or providing customized notifications to users. For basic restart needs, though, reboot remains the most efficient option.

Using the Shutdown Command for Restarts

The shutdown command offers more flexibility and control compared to the basic reboot command. It allows for scheduled restarts, user notifications, and various shutdown options.

Basic Syntax with Restart Flag

To restart Ubuntu using the shutdown command, use the following syntax:

sudo shutdown -r now

The -r flag tells the system to restart after shutting down, while now indicates that the action should be taken immediately. This command initiates a graceful shutdown followed by a system restart.

Scheduling Restarts with Time Parameters

One of the key advantages of the shutdown command is the ability to schedule restarts for a later time. This is particularly useful for planning maintenance windows or ensuring users have time to save their work.

To schedule a restart after a specific number of minutes:

sudo shutdown -r +minutes

Replace minutes with the number of minutes to wait before restarting. For example:

sudo shutdown -r +30

This command schedules a restart in 30 minutes.

To schedule a restart at a specific time of day:

sudo shutdown -r hh:mm

Replace hh:mm with the hour and minute in 24-hour format. For example:

sudo shutdown -r 23:30

This schedules a system restart at 11:30 PM.

Notifying Users About Upcoming Reboots

The shutdown command allows you to include a custom message that will be displayed to all logged-in users:

sudo shutdown -r +15 "System will restart in 15 minutes for scheduled maintenance"

This notifies users of the impending restart and gives them time to save their work.

Canceling Scheduled Restarts

If you need to cancel a scheduled shutdown, use the following command:

sudo shutdown -c

This cancels any pending shutdown or restart operations.

Best Scenarios for Using Shutdown

The shutdown command is preferable when:

  • You need to schedule a restart for a future time
  • You want to provide notifications to users
  • You require more control over the restart process
  • You’re performing planned maintenance that requires user awareness

Scheduling System Reboots

Effectively scheduling system reboots ensures minimal disruption to users while maintaining system health and applying necessary updates.

Setting Delayed Reboots

As mentioned earlier, the shutdown command with the -r flag and a time parameter allows you to set delayed reboots:

sudo shutdown -r +minutes

This approach is ideal for giving users advance notice of an impending restart. The system will display a notification to all logged-in users, allowing them to save their work and prepare for the restart.

Creating Recurring Reboot Schedules

For systems that require regular reboots, such as for memory management or to apply weekly updates, you can use the cron scheduler:

  1. Open the crontab editor:
    sudo crontab -e
  2. Add a line to schedule a weekly reboot (for example, every Sunday at 2 AM):
    0 2 * * 0 /sbin/shutdown -r now

This creates a persistent reboot schedule that continues until explicitly removed.

Best Practices for Scheduled Reboots

When scheduling system reboots, consider the following best practices:

  • Choose low-traffic periods for routine restarts
  • Provide adequate notification to users (at least 15-30 minutes)
  • Include informative messages explaining the reason for the restart
  • Ensure critical services are configured to restart automatically
  • Test scheduled reboots during maintenance windows before implementing them in production

Maintenance Windows and Off-Hours Updates

Schedule critical system updates and associated reboots during designated maintenance windows to minimize impact on users and services. For 24/7 production environments, implement a rotating maintenance schedule to ensure all systems aren’t down simultaneously.

Using Systemctl for Modern Ubuntu Systems

Modern Ubuntu systems use systemd as their init system, which provides the systemctl command for managing system state, including reboots.

SystemD Reboot Management

To restart Ubuntu using systemctl, use the following command:

sudo systemctl reboot

This command instructs systemd to gracefully terminate all processes, services, and applications before restarting the system. The systemctl command communicates directly with systemd, making it highly efficient for modern Ubuntu versions.

Advantages in Newer Ubuntu Versions

Systemctl offers several advantages in Ubuntu systems running systemd:

  • Better integration with other systemd components
  • More detailed logging of the restart process
  • Improved handling of dependent services during restart
  • Consistent interface across different systemd-based distributions

Force Reboot with Systemctl

For situations where a standard reboot isn’t working, systemctl provides a force option:

sudo systemctl reboot --force

This command forces an immediate reboot by skipping the normal shutdown process for unresponsive services. Use this option cautiously, as it may lead to data loss or filesystem corruption.

Comparing to Traditional Methods

While traditional commands like reboot and shutdown still work in modern Ubuntu systems, systemctl provides better integration with the underlying systemd init system. This results in more reliable restarts and better handling of service dependencies during the reboot process.

Legacy Methods: Init and Telinit Commands

Despite the move to systemd in modern Ubuntu versions, legacy reboot commands from the SysVinit era still function and can be useful in certain situations.

Using Runlevel Commands

In traditional Unix and Linux systems, runlevel 6 is designated for system reboots. To trigger a reboot using the init command:

sudo init 6

Similarly, the telinit command can be used:

sudo telinit 6

Both commands instruct the system to change to runlevel 6, which initiates a system restart.

History and Background of Runlevels

Runlevels are a concept from the SysVinit initialization system that defined different operating states for the system:

  • Runlevel 0: System shutdown
  • Runlevel 1: Single-user mode
  • Runlevels 2-5: Multi-user modes with varying services
  • Runlevel 6: System reboot

While systemd has replaced the traditional runlevel concept with target units, it maintains compatibility with these legacy commands.

When to Use Legacy Commands

Legacy commands might be preferred in the following scenarios:

  • Working on older Ubuntu versions (pre-systemd)
  • Compatibility with older scripts and documentation
  • Systems where systemd commands are unavailable or not functioning correctly
  • Environments where admin staff is more familiar with traditional commands

Despite systemd being the standard in modern Ubuntu, these legacy commands will likely remain functional for the foreseeable future to maintain backward compatibility.

Emergency Restart Methods

When standard reboot commands fail or the system becomes completely unresponsive, emergency restart methods provide a last resort to regain control of your Ubuntu system.

The REISUB Sequence Explained

The REISUB sequence is a kernel-level method to trigger a safe reboot even when the system appears completely frozen. This method works directly with the Linux kernel’s System Request (SysRq) functionality, bypassing the regular userspace commands.

To use the REISUB sequence:

  1. Press and hold Alt + PrtSc (Print Screen) keys
  2. While holding them, type the following keys in sequence: R, E, I, S, U, B

Each key in the sequence performs a specific action:

  • R: Switches keyboard from raw mode to XLATE mode
  • E: Sends the SIGTERM signal to all processes except init
  • I: Sends the SIGKILL signal to all processes that didn’t terminate
  • S: Flushes filesystem buffers to disk
  • U: Remounts all filesystems in read-only mode
  • B: Immediately reboots the system

Terminal Alternative for REISUB

If you prefer to trigger the REISUB sequence from the terminal, you can use:

echo b | sudo tee /proc/sysrq-trigger

This command sends the ‘b’ (reboot) signal directly to the kernel’s SysRq interface, initiating an immediate reboot. Note that this bypasses the safer full REISUB sequence and should only be used in emergency situations.

When to Use Emergency Reboot Methods

Emergency reboot methods should be reserved for situations where:

  • The system is completely unresponsive to normal commands
  • Critical services have frozen and cannot be terminated
  • The GUI has crashed and terminal access is limited
  • Normal reboot commands hang indefinitely
  • You need to recover from a severe system lockup

These methods are more abrupt than standard reboot commands and should be used only when necessary.

Forcing System Reboots

There are situations where standard reboot procedures may not work, requiring forced restart methods. These methods should be used with caution as they can lead to data loss or filesystem corruption.

Using Force Options

The -f flag can be added to the reboot command to force an immediate restart:

sudo reboot -f

This bypasses the normal shutdown sequence and forces the system to restart immediately. The command is particularly useful when normal reboot processes are stuck or when services refuse to terminate properly.

Risks and Potential Data Loss

Forced reboots carry significant risks:

  • Unsaved data in running applications will be lost
  • Filesystem journals may not be properly closed
  • Database transactions might be interrupted
  • Configuration files being written may become corrupted
  • System services may not shut down cleanly

Due to these risks, forced reboots should be used only when absolutely necessary and after attempting safer methods.

Recovery After Improper Shutdowns

After a forced reboot, filesystem checks will often run automatically during the boot process to repair any potential damage. However, you may need to take additional steps:

  1. Check system logs for errors:
    sudo journalctl -b -1 -p err
  2. Run manual filesystem checks if necessary:
    sudo fsck -f /dev/sdXY
  3. Verify critical service integrity:
    sudo systemctl status critical-service-name
  4. Check database consistency for systems running database services.

Remote System Rebooting

Managing remote Ubuntu systems often requires the ability to safely restart them without physical access. This section covers methods and considerations for remote rebooting.

SSH Access Methods

To reboot a remote Ubuntu system over SSH:

ssh username@server_address sudo reboot

This command connects to the remote server and executes the reboot command with sudo privileges. For systems requiring password authentication, use:

ssh username@server_address "echo 'password' | sudo -S reboot"

However, for security reasons, key-based authentication is strongly recommended over password authentication.

Ensuring Connectivity After Reboot

Before rebooting a remote system, ensure that all critical services are configured to start automatically after restart. Test the automated service startup during maintenance windows before relying on it in production environments.

For critical systems, implement monitoring that verifies the system comes back online:

while ! ping -c 1 server_address &>/dev/null; do sleep 5; done; echo "Server is back online"

Setting Up Auto-Restart Services

Configure essential services to restart automatically after a system reboot:

sudo systemctl enable critical-service-name

This ensures that important services will be started automatically during the boot process.

Security Considerations

When implementing remote reboot capabilities:

  • Restrict sudo privileges for reboot commands to authorized users only
  • Use SSH key authentication instead of passwords
  • Consider implementing two-factor authentication for sensitive systems
  • Log all remote reboot events for auditing purposes
  • Configure timeout values for SSH sessions to prevent abandoned connections

These measures help maintain system security while enabling remote management capabilities.

Specialized Reboot Scenarios

Beyond standard reboots, Ubuntu administrators often need to handle specialized scenarios that require specific approaches or additional parameters.

Rebooting into Recovery Mode

To reboot directly into recovery mode:

  1. Edit the GRUB configuration temporarily during boot by holding Shift key during startup
  2. Select the “Advanced options for Ubuntu” menu
  3. Choose the recovery mode option for your kernel version

Alternatively, to configure a one-time boot to recovery mode from the terminal:

sudo grub-reboot "Advanced options for Ubuntu>Ubuntu, with Linux $(uname -r) (recovery mode)"
sudo reboot

This command sets GRUB to boot into recovery mode on the next restart only.

Rebooting with Specific Kernel Parameters

To reboot with temporary kernel parameters:

sudo grub-reboot "$(cat /etc/grub2/grub.cfg | grep menuentry | grep -v submenu | cut -d "'" -f2 | head -1) systemd.unit=emergency.target"
sudo reboot

This example reboots into emergency mode, but you can substitute any kernel parameters needed for your specific scenario.

Single-User Mode Restarts

To restart into single-user mode:

sudo systemctl isolate rescue.target

This transitions the system to rescue mode, which is similar to the traditional single-user mode.

Managing Reboots with Active User Sessions

When users are actively using the system, provide adequate notification before restarting:

sudo wall "System maintenance restart scheduled in 15 minutes. Please save your work and log out."
sudo shutdown -r +15 "System restart for maintenance"

The wall command sends a message to all logged-in users, while the shutdown command schedules the restart with a notification.

Troubleshooting Reboot Issues

Even the simplest reboot commands can occasionally encounter problems. Understanding common issues and their solutions helps maintain system reliability.

Permission and Authentication Problems

If you encounter “Permission denied” errors when attempting to reboot:

  1. Verify your user has sudo privileges:
    sudo -l
  2. Ensure your user is in the sudo group:
    groups username
  3. If necessary, add your user to the sudo group:
    sudo usermod -aG sudo username

After making changes to group membership, log out and log back in for the changes to take effect.

System Hangs During Reboot

If your system hangs during the reboot process:

  1. Try a more forceful reboot:
    sudo reboot -f
  2. If that fails, attempt the REISUB method described earlier
  3. Check logs after successful reboot to identify the cause:
    sudo journalctl -b -1 | grep -i "fail\|error"

Persistent hanging issues may indicate hardware problems or conflicts between services during shutdown.

Services Preventing Clean Shutdowns

Some services may block or delay system reboots. To identify and address these issues:

  1. View shutdown inhibitors:
    systemd-inhibit --list
  2. Force a specific service to stop before rebooting:
    sudo systemctl stop problematic-service
    sudo reboot
  3. Adjust service timeout values in systemd configuration if services consistently take too long to stop.

Checking Logs for Reboot Failures

After resolving a reboot issue, examine system logs to prevent future occurrences:

sudo journalctl -b -1 -p err

This command displays error-level messages from the previous boot cycle, which can help identify the root cause of reboot problems.

Best Practices for System Reboots

Implementing best practices for system reboots ensures minimal disruption, maintains data integrity, and preserves system health across your Ubuntu environments.

Saving Work Before Initiating Reboots

Before restarting any system, especially those with active users:

  1. Send advance notifications using the wall command
  2. Schedule reboots with adequate warning time
  3. Configure critical applications to autosave when possible
  4. Create periodic snapshots for systems with critical data

These practices minimize data loss and user frustration during necessary restarts.

Proper User Notification

For multi-user systems, implement a standard notification procedure:

sudo wall "ATTENTION: System restart scheduled for $(date -d '+15 minutes'). Please save your work and log out."

Follow this with a formal shutdown command that includes a descriptive message:

sudo shutdown -r +15 "System maintenance restart"

Clear communication reduces user frustration and support calls related to system reboots.

Creating Custom Aliases

Create custom aliases for commonly used reboot commands to improve efficiency and reduce typing errors:

Add to your ~/.bashrc file:

alias safe-reboot='sudo shutdown -r +5 "Reboot in 5 minutes"'
alias quick-reboot='sudo reboot'
alias force-reboot='sudo reboot -f'

Then run source ~/.bashrc to implement the changes.

Documenting Reboot Procedures

For team environments, maintain clear documentation of:

  • Standard reboot procedures
  • Emergency restart protocols
  • Recovery steps after failed reboots
  • Contact information for escalation
  • Verification procedures post-reboot

Comprehensive documentation ensures consistent handling of system reboots across different administrators and shifts.

Monitoring System Health After Reboots

Implement post-reboot health checks:

  1. Verify all critical services are running:
    sudo systemctl list-units --state=failed
  2. Check for unusual errors in logs:
    sudo journalctl -p err -b
  3. Monitor system performance for anomalies after restart
  4. Verify network connectivity and application functionality

These checks help identify any issues introduced by the reboot process.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

r00t

r00t is an experienced Linux enthusiast and technical writer with a passion for open-source software. With years of hands-on experience in various Linux distributions, r00t has developed a deep understanding of the Linux ecosystem and its powerful tools. He holds certifications in SCE and has contributed to several open-source projects. r00t is dedicated to sharing her knowledge and expertise through well-researched and informative articles, helping others navigate the world of Linux with confidence.
Back to top button