Quick wins for a faster PC:
Scan for outdated or missing drivers - takes under a minuteDriver Scan →Repair Windows errors before they cause bigger problemsFix Now →Some links on this page are affiliate links: if you buy through them we may earn a commission, at no extra cost to you.
On Ubuntu’s default GNOME desktop, run this command in Terminal to show seconds in the top-bar clock:
gsettings set org.gnome.desktop.interface clock-show-seconds true
The change normally appears immediately and does not require sudo. This GNOME setting applies to Ubuntu editions using GNOME Shell; other Ubuntu flavors may use a different clock and panel.
Show seconds from Terminal
- Open Terminal with Ctrl+Alt+T.
- Run:
gsettings set org.gnome.desktop.interface clock-show-seconds true - Check the top bar. A clock such as
10:42should change to something like10:42:37.
To confirm the preference, run:
gsettings get org.gnome.desktop.interface clock-show-seconds
The expected output is true. The setting controls whether GNOME displays seconds; it does not change the system time, time zone, or synchronization.
Do these 3 things before closing this tab:
1Clear out junk files and repair common Windows errors2Fix the driver behind crashes, sound loss and screen glitches3Repair Windows errors before they cause bigger problemsThis is a user-level preference, so run it as your normal logged-in user, not with sudo. GNOME’s shared settings schema includes the clock-show-seconds key; see the GNOME schema history and the Ask Ubuntu command reference.
#1 Best Overall
- [ULTRA-RUGGED DESIGN] MIL-STD-810G and IP65 certified. Built to survive 6-foot drops, heavy rain, and extreme vibrations. Features a magnesium alloy chassis with an integrated carry handle for maximum portability
- [4G LTE - WORK ANYWHERE] Integrated 4G LTE Multi-Carrier Mobile Broadband. Stay connected to the internet in remote areas or on the road without relying on Wi-Fi or phone hotspots. True mobile freedom for field professionals
- [1200-NIT SUNLIGHT READABLE] 13.1" XGA Touchscreen with CircuLumin technology. At 1200 nits, it is nearly 4x brighter than a standard laptop, ensuring perfect visibility under direct, intense sunlight
- [LINUX UBUNTU PRE-INSTALLED] Fast, secure, and bloatware-free. Optimized for developers, network engineers, and diagnostic software that thrives in a stable, open-source environment
- [LEGACY SERIAL PORT] Features a native RS-232 Serial Port, HDMI, and USB 3.0. Essential for connecting directly to industrial machinery, CNCs, and automotive diagnostic tools without unreliable adapter
Hide seconds or restore the default
To explicitly turn seconds off, run:
gsettings set org.gnome.desktop.interface clock-show-seconds false
To remove your override and return the key to its schema default, run:
gsettings reset org.gnome.desktop.interface clock-show-seconds
The schema default has historically been false, so resetting normally hides seconds. Setting false and resetting have the same visible result in that case, but resetting restores the default rather than storing an explicit off value.
Can you use Settings or GNOME Tweaks?
Possibly, but the graphical controls vary by Ubuntu and GNOME version. On some recent installations, look under Settings → System → Date & Time. Older instructions may say to open GNOME Tweaks → Top Bar → Show seconds; that section or option may be absent on newer releases. The terminal command is the more consistent route. For details on the changing interface, see this version discussion.
Rank #2
- Powerful Linux Laptop: This IdeaPad Slim 3 Laptop comes pre-installed with Ubuntu Linux, offering fast performance, robust security, and a clean, user-friendly experience. Enjoy full customization, seamless hardware compatibility, and access to thousands of open-source apps. Whether you're working, creating, or coding, it's built to keep up with everything you do.
- A Multitasking Master: The latest AMD Ryzen 7 5825U processor (up to 4.5 GHz) delivers powerful performance with 8 cores and 16 threads for smooth multitasking. Integrated AMD Radeon Graphics provide crisp visuals for streaming, browsing, photo editing, and casual gaming. With smart machine intelligence, it adapts to your needs for a fast, responsive experience.
- 15.6" Full HD Display: The IdeaPad Slim 3 boasts an 88% screen-to-body ratio for a floating, edge-to-edge visual experience. TÜV Low Blue Light certification reduces eye strain, making it perfect for long work or study sessions.
- Military-Grade Durability: The smart IdeaPad Slim 3 combines portability and durability, letting you work, study, and play on the go. With a profile 10% slimmer than the previous generation, it's lightweight yet military-grade rugged, ready for anything, anywhere.
- Versatile Connectivity: Enjoy the security of a built-in webcam with a privacy shutter. Connect effortlessly with multiple ports: 2x USB A, 1x USB C, 1x HDMI, 1x SD Card Reader, 1x Headphone/Microphone combo. Bundle comes with Stylus Pen, 256GB Portable SSD and 5-in-1 Docking Station.
Ubuntu 22.04 LTS, 24.04 LTS, and later GNOME-based desktop releases use GNOME clock preferences, but that does not guarantee an identical graphical toggle in every release or customized installation. Canonical documents related clock preferences in its Ubuntu desktop clock policy reference.
Change it with Dconf Editor
Dconf Editor offers a graphical way to edit the underlying preference. Install it if needed:
sudo apt install dconf-editor
Open Dconf Editor and navigate to:
/org/gnome/desktop/interface/
Find clock-show-seconds and enable it. Dconf Editor exposes many desktop preferences, so change only the key you intend to modify. For simply showing seconds, the gsettings command is shorter and less error-prone.
Rank #3
- ✅For beginners, refer image-7, its a video boot instruction, and image-6 is "boot menu Hot Key list"
- ✅16-IN-1, 64GB Bootable USB Drive 3.2 , Can Run Linux On USB Drive Without Install, All Latest versions.
- ✅Including Windows 11 64Bit & Linux Mint 22.3 (Cinnamon)、Kali 2026.02、Ubuntu 26.04、Zorin Pro 18、Tails 7.8.1、Debian 13.5.0、Garuda 2026.03、Fedora Workstation 44、Manjaro 25.06、Pop!_OS 22.04、Solus 2026.04、Archcraft 26.05、Neon 2026.06、Fossapup 9.5、Sparkylinux 8.3, All ISO has been Tested
- ✅Supported UEFI and Legacy, Compatibility any PC/Laptop, Any boot issue only needs to disable "Secure Boot"
Troubleshooting
“No such schema” or “No such key”
Check whether the key is available:
gsettings range org.gnome.desktop.interface clock-show-seconds
You can also inspect related keys:
gsettings list-recursively org.gnome.desktop.interface | grep clock
If the schema or key is missing, you may not be using GNOME Shell, or the installation may be old, incomplete, or customized. Ubuntu includes desktop flavors such as Kubuntu (KDE Plasma), Xubuntu (Xfce), Lubuntu (LXQt), and Ubuntu MATE; their panel clocks may have their own settings and may not use this GNOME preference.
Free tools Windows power users keep installed
One-click scans. No signup required.
Check the desktop environment with:
echo "$XDG_CURRENT_DESKTOP"
The command reports a D-Bus or display error
Run the command in a terminal opened inside your active graphical Ubuntu session. A bare SSH login, service shell, or command run outside the desktop session may lack the session’s D-Bus or display environment. Avoid sudo, which can run the command as a different user and fail to change your desktop preference. An Ask Ubuntu troubleshooting discussion describes this kind of session-related failure.
The value is true, but the clock still has no seconds
First confirm the value:
gsettings get org.gnome.desktop.interface clock-show-seconds
If it returns true, check that you are looking at GNOME’s top bar rather than a different panel or an extension-provided clock. Temporarily disable clock-customization extensions, then log out and back in if needed. To identify the session type, run:
Rank #4
- Intel Core i5-1335U Processor (12M Cache, 12 Threads, up to 4.6 GHz) - 256GB Solid State Drive - 16GB DDR4 SDRAM
- 15.6" FHD (1920x1080) Non-Touch Anti-Glare Display - Intel UHD 620 Integrated Graphics - Stereo Speakers
- 720p HD Webcam with Privacy Shutter. Integrated Microphone - Intel Dual Band Wireless-AC (2x2) 8265, Bluetooth Version 4.2
- I/O Ports: 2x USB 3.0, 1x USB 3.1 Type-C 3.1, Headphone/Mic Combo Port, 4-in-1 Card Reader, HDMI, Kensington Mini-Lock Slot
- Linux Mint (Cinnamon) 64-Bit - Keyboard with Full NumberPad - Fast Charging
echo "$XDG_SESSION_TYPE"
The change normally applies live, so wait a moment or close and reopen the clock menu first. Logging out and back in is a reasonable fallback. Avoid relying on an X11-only GNOME Shell restart shortcut: Ubuntu may be using Wayland.
Do you need a clock extension?
Not for the basic task. The native setting adds seconds without extra software. An extension may make sense if you want a custom clock layout, a larger clock, or other formatting features, but it adds compatibility and maintenance considerations. For example, Numeric Clock offers configurable display options; check its listed GNOME Shell compatibility against your installed version before using it.
Showing seconds makes the displayed clock update once per second. No quantified battery or performance penalty is established here; for ordinary desktop use, the practical impact is expected to be small, but it is not necessary to claim it is zero.
Quick Recap
Product prices and availability are accurate as of the date/time indicated and are subject to change. Any price and availability information displayed on Amazon at the time of purchase will apply.

