Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Some links on this page are affiliate links: if you buy through them we may earn a commission, at no extra cost to you.

You generally should not remove Chrome’s sandbox permanently. For a short diagnostic test—or a deliberately isolated headless-browser job—you can launch Chrome with --no-sandbox. Close that session and remove the flag afterward. It reduces an important security barrier, so it is not appropriate for everyday browsing.

First, identify which sandbox you mean

Chrome is a multi-process browser. Its operating-system sandboxing isolates certain child processes, including renderers, from the rest of the system. The browser process itself is not sandboxed in the same way. Platform details vary, so “remove the sandbox” is not equivalent to deleting one file or changing one browser preference. See Chromium’s platform overview for a high-level description; that page notes its coverage was last updated for M128, so it should not be treated as a guarantee about every later release.

  • Chrome process sandbox: Operating-system isolation for browser child processes. The --no-sandbox switch is the usual launch-time way to disable sandboxing for a test. Chromium documents it as disabling all sandboxing on Linux and specifically says it is for testing: Linux sandboxing documentation.
  • Linux chrome-sandbox helper: A component used by some Linux builds. Do not delete or rename it; Chromium’s documentation warns against removing the sandbox binary. Repair the package if the helper is missing or broken.
  • Privacy Sandbox: A separate set of web-platform privacy and advertising features. The --no-sandbox switch does not turn those features off.
  • Extension or app sandbox: A restriction for extension/app pages, configured as part of the extension or app design—not the browser’s process sandbox. See Chrome’s manifest sandbox documentation.
  • Service-specific sandbox: Managed Chrome policies can affect particular services, such as Windows network or printing processes, without disabling every browser sandbox.

Is it safe to browse with --no-sandbox?

No—not for normal browsing. If a renderer processing malicious or compromised web content has fewer containment barriers, an exploit has a potentially easier path toward the operating system. This does not mean compromise is certain, but it removes defense in depth. Do not use the flag for banking, work or administrator accounts, password-manager sessions, untrusted downloads, unknown sites, or a computer shared with other users.

Free tools Windows power users keep installed

One-click scans. No signup required.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Chrome for Developers says running Chrome as root without the sandbox is unsupported. Do not treat sudo ... --no-sandbox as a routine fix. For automation, prefer a non-root user and an isolated, disposable environment; a container is not automatically a substitute for Chrome’s own sandbox. Chromium’s sandbox documentation and Chrome headless guidance explain the relevant trade-offs.

#1 Best Overall
Sale
Nulaxy Ergonomic Adjustable Laptop Stand for Desk, Dual Foldable Computer Riser with Advanced Heat-Vent, Heavy-Duty Portable Notebook Holder for Posture Correction, Compatible with Mac 10-16" Laptops
  • Ergonomic Posture Correction: Designed to elevate your laptop to the perfect eye level, this adjustable laptop stand significantly reduces neck, shoulder, and spinal fatigue. Transform your desk into a healthier workstation, ideal for long hours of typing, Zoom meetings, or gaming.
  • Unshakable Dual-Rod Stability: Unlike single-hinge models, our stand features a highly engineered dual-support rod mechanism. It perfectly distributes weight to ensure a 100% wobble-free typing experience, safely supporting heavy-duty devices up to 22 lbs (10kg).
  • Advanced Thermal Cooling Panel: Maximize your device's performance. The unique geometric heat-vent design on the upper panel provides superior airflow compared to standard solid stands. This continuous heat dissipation prevents your laptop from thermal throttling and hardware damage during intensive tasks.
  • Universal 10-16” Compatibility: A versatile computer riser that seamlessly fits all 10 to 16-inch laptops. Broadly compatible with MacBook Pro/Air, Dell XPS, HP, Lenovo, ASUS, Chromebook, and large gaming laptops. The anti-slip silicone pads firmly grip your device and protect it from scratches.
  • Foldable, Portable & Ready to Go: Maximize your productivity anywhere. The dual-foldable design allows the stand to collapse completely flat in seconds. Easily slip it into your backpack or briefcase, making it the ultimate portable office accessory for business trips, cafes, or hybrid work setups.

Temporarily launch Chrome without the sandbox

Use this only to test whether sandbox behavior is related to a problem. Save any work, close Chrome fully, and launch the browser using the appropriate method below. The flag must be a separate command-line argument, not part of the executable’s quoted path.

Windows

  1. Quit every Chrome window. If Chrome continues running in the background, close its remaining processes before testing.
  2. Right-click the shortcut you intend to use and choose Properties.
  3. In Target, move the cursor beyond the closing quotation mark of the executable path, type a space, then add --no-sandbox.
  4. For example, the field may look like this:
    "C:Program FilesGoogleChromeApplicationchrome.exe" --no-sandbox
  5. Select Apply, then OK, and start Chrome using that shortcut. Test only long enough to reproduce the issue.

The path above is an example; installations can use another location, including a per-user folder. Do not replace a working executable path just to match the example. Google’s Chrome debugging instructions describe adding command-line flags to a Windows shortcut.

macOS

Quit Chrome, open Terminal, and run:

/Applications/Google Chrome.app/Contents/MacOS/Google Chrome --no-sandbox

If Chrome is installed elsewhere, adjust the application path. Chromium’s application name or location may differ. This launches a diagnostic session; macOS does not provide a normal Chrome Settings switch to remove the process sandbox. The executable-inside-the-app approach is documented in Google’s Chrome debugging instructions.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.
Rank #2
Sale
BESIGN LS03 Aluminum Laptop Stand, Ergonomic Detachable Computer Stand, Notebook Riser, Laptop Mount Compatible with Air, Pro, Dell, HP, Lenovo More 10-15.6" Laptops, Silver
  • Broad Compatibility: Besign LS03 Laptop Mount is compatible with all laptops from 10''-15.6'', such as Air 13, Pro 13 / 15 / 2018 / 2017 / 2016, Lenovo ThinkPad, Dell, HP, ASUS, Chromebook, and other notebooks.
  • Ergonomic Design: This LS03 Laptop Stand could elevate your laptop by 6’’ to a perfect viewing level, help you improve your posture and reduce neck and shoulder pain. This laptop stand is super easy to detach and assemble.
  • Stable And Protective: This laptop stand is made of premium Aluminum alloy, it is sturdy, support up to 8.8 lbs(4kg), no worry any wobble at all; the rubber on the holder hands sticks tightly, ensure your laptop stable on the stand and prevent any scratches.
  • Keep Laptop Cool: the open aluminum design provides good ventilation and airflow to prevent your laptop from overheating. It folds flat if you need to store it, create extra space on your desk and keep your desk clean and organized.
  • Easy to Use: thanks to the detachable design, you could assemble it very easily it 3 steps.

Linux

Close Chrome or Chromium, then run the command that normally launches your browser, adding the flag at the end. Common executable names include:

google-chrome --no-sandbox
google-chrome-stable --no-sandbox
chromium --no-sandbox
chromium-browser --no-sandbox

Names vary by distribution and package. For a custom installation, use its executable path, for example /path/to/chrome-or-chromium --no-sandbox. Do not delete, rename, or alter the permissions of chrome-sandbox as a substitute; fix a broken installation through the package or distribution’s documented repair steps.

Remove the flag and return to normal

After the test, close the browser and relaunch it without --no-sandbox. On Windows, remove the flag from the shortcut’s Target field, then select Apply. On macOS, reopen Chrome from its usual launcher rather than the Terminal command. On Linux, run the normal launch command without the flag.

Rank #3
Sale
LOXP Adjustable Laptop Stand, Computer Stand with 360 Rotating Base
  • ✔️[Foldabe & Protable] - Foldable laptop stand for desk & Protable computer stand, It combines the advantages of market brackets, convenient travel laptop stand. Easy to use. Suitable for working at home, office and outdoor, improve comfort.
  • ✔️[360°Rotation] - The computer stand with 360° rotating base, 360° rotation connected with the base is more flexible, the computer stand allows you to rotate the laptop to any angle.
  • ✔️[Stable & Durable] - The Computer stand is made of one-piece fiber metal material, which is more durable and stable than ordinary aluminum alloy computer stands. The upgraded rotating base makes the stand performance more stable, and the non-slip silicone protects the laptop from sliding.Only supports laptops up to 16 inches.
  • ✔️[Ergonmic Desing] - You can freely adjust the height and angle of the laptop stand to keep it at eye level, which helps to reduce the pressure on your body while working. Whether sitting or standing, there is a comfortable angle.
  • ✔️[Wide Compatibility] - Our laptop stand is compatible with all laptops from 10-16 inches, such as MacBook Air/Pro, Google PixelBook, Dell XPS, HP, ASUS, Lenovo ThinkPad, Acer, Chromebook and Microsoft Surface, etc. It is an ideal companion for computer workers.

Also check any other place that might start Chrome: a pinned taskbar or Start-menu shortcut, shell alias, .desktop launcher, wrapper script, scheduled task, systemd unit, Docker command, CI configuration, or automation framework. Removing the flag from one shortcut does not remove it from other launch points.

What’s actually slowing this PC down?

Pick the symptom - the matching free tool is one click away.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

For headless Chrome, Docker, CI, or browser automation

--no-sandbox is sometimes used in headless examples, but it is not a general requirement for headless mode. It may appear when a runtime cannot provide the kernel features Chrome needs or when the browser is running as root. Start by fixing the environment rather than assuming that the browser sandbox must be disabled:

  1. Run Chrome under a dedicated, unprivileged user.
  2. Use a maintained browser package or automation image and follow its documented prerequisites.
  3. Check whether the kernel and container runtime permit the namespace, seccomp, and related operations Chrome’s sandbox needs.
  4. Prefer a disposable container or VM. Restrict mounted host files, credentials, sockets, network access, and access to metadata services.
  5. Only if the sandbox cannot be supported and the job has a deliberate compensating isolation boundary should you consider --no-sandbox. Treat it as reduced defense in depth, not a routine setting.

A container’s protection depends on its configuration and what it exposes to the process; being in a container alone does not make sandbox-free Chrome safe.

Rank #4
Gogoonike Adjustable Laptop Stand for Desk, Metal Laptop Riser Holder
  • 【Adjustable & Ergonomic】:This laptop stand can be adjusted to a comfortable height and angle according to your actual needs, letting you fix posture and reduce your neck fatigue, back pain and eye strain. Very comfortable for working in home, office and outdoor.
  • 【Sturdy & Protective】 :Made of sturdy metal, it can support up to 17.6 lbs (8kg) weight on top; With 2 rubber mats on the hook and anti-skid silicone pads on top & bottom, it can secure your laptop in place and maximum protect your device from scratches and sliding. Moreover, smooth edges will never hurt your hands.
  • 【Heat Dissipation】 :The top of the laptop stand is designed with multiple ventilation holes. The open design offers greater ventilation and more airflow to cool your laptop during operation other than it just lays flat on the table.
  • 【Portable & Foldable】:The foldable design allows you to easily slip it in your backpack. Ideal for people who travel for business a lot.
  • 【Broad Compatibility】:Our desktop book stand is compatible with all laptops from 10-15.6 inches, such as MacBook Air/ Pro, Google Pixelbook, Dell XPS, HP, ASUS, Lenovo ThinkPad, Acer, Chromebook and Microsoft Surface, etc.Be your ideal companion in Home, Office & Outdoor.

If Chrome works only as root

Use a dedicated unprivileged account instead of making root plus --no-sandbox the permanent fix. To establish what account and browser build are involved, these Linux checks can help:

id
whoami
google-chrome --version
google-chrome --headless=new about:blank

If the root-run attempt fails but a non-root attempt works, investigate the runtime and user configuration. Chrome’s official headless guidance describes running as root without the sandbox as unsupported.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.
Independent reader supportYour contribution helps us test, update, and keep practical guides available for everyone.Support on Ko-Fi

Diagnose the underlying problem before disabling protection

If Chrome reports that no usable sandbox is available or refuses to start, inspect the specific error and environment first. Check that the browser package is complete, determine whether Chrome is running as root, and verify that the kernel or container has not blocked required namespace or seccomp operations. If a Linux helper is missing or incorrectly packaged, repair or reinstall the browser package rather than deleting more files. Linux uses multiple sandbox layers, so a problem with one mechanism does not mean all sandboxing should be discarded.

Best Value
Tonmom Adjustable Laptop Stand for Desk, Metal Foldable Laptop Riser
  • ✅【Adjustable & Ergonomic】:This laptop stand can be adjusted to a comfortable height and angle according to your actual needs, letting you fix posture and reduce your neck fatigue, back pain and eye strain. Very comfortable for working in home, office and outdoor.
  • ✅【Sturdy & Protective】 :Made of sturdy metal, it can support up to 17.6 lbs (8kg) weight on top; With 2 rubber mats on the hook and anti-skid silicone pads on top & bottom, it can secure your laptop in place and maximum protect your device from scratches and sliding. Moreover, smooth edges will never hurt your hands.
  • ✅【Heat Dissipation】 :The top of the laptop stand is designed with multiple ventilation holes. The open design offers greater ventilation and more airflow to cool your laptop during operation other than it just lays flat on the table.
  • ✅【Portable & Foldable】:The foldable design allows you to easily slip it in your backpack. Ideal for people who travel for business a lot.
  • ✅【Broad Compatibility】:Our laptop holder is compatible with all laptops from 10-17.3 inches, such as MacBook Air/ Pro, Google Pixelbook, Dell XPS, HP, ASUS, Lenovo ThinkPad, Acer, Chromebook and Microsoft Surface, etc.Be your ideal companion in Home, Office & Outdoor.

On Windows, open these pages in Chrome to inspect sandbox status and possible software conflicts:

chrome://sandbox
chrome://conflicts

Chromium lists both as useful diagnostic pages in its Windows sandbox diagnostics. Before using the flag, also try updating Chrome, the operating system, security software, drivers, and automation dependencies; testing a fresh profile; or isolating a suspect extension. Reinstalling may repair corrupted installation files, but it does not remove Chrome’s design-level sandbox. See Google’s installation guidance.

If a short test with --no-sandbox makes the error disappear, that only shows that changing sandbox behavior affects the failure. It does not prove the sandbox is defective or that the flag belongs in your regular launch command. Identify the conflicting software, policy, driver, kernel feature, or container restriction and correct that cause.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

When only one Chrome service is affected

In managed environments, an administrator may be able to target a particular service sandbox—for example, Windows network-service or printing LPAC controls—instead of disabling all sandboxing. Google’s Chrome Enterprise and Education policies cover these controls and warn that weakening them reduces security. Use a narrowly scoped policy only when a specific compatibility issue requires it, with administrator oversight.

Common launch problems

  • The behavior did not change: Chrome may still have been running, you may have used a different shortcut, or a script or task runner may launch another copy.
  • The flag is ignored: On Windows, make sure there is a space after the closing quotation mark and that the flag is outside the quotes: "path to chrome.exe" --no-sandbox. Use two ordinary hyphens, not a typographic dash.
  • Chrome will not start: Remove the flag, try the normal launcher, and verify the executable path. On Linux, retain the terminal error and investigate the package, user, and runtime restrictions.
  • You see a command-line warning: That can occur with nonstandard switches. It is not proof that Chrome is secure or that the underlying problem has been fixed.

Is this the same on phones or ChromeOS?

The steps above apply to desktop Chrome/Chromium launchers on Windows, macOS, and Linux. They are not instructions for Android, iOS, or ChromeOS, which have different operating-system and browser management models. Do not assume a desktop command-line switch is a supported way to change sandboxing on those platforms.

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.