Wenn Sie gerne Ihr Windows-Setup optimieren, müssen Sie häufig Befehle mit erhöhten Rechten oder Befehle auf Administratorebene ausführen. Sie sind wahrscheinlich daran gewöhnt, eine Eingabeaufforderung als Administrator auszuführen, aber mit sudo unter Windows wird es jetzt viel einfacher.
Trotz des allgemeinen Schwerpunkts auf der Konfiguration aller Dinge über die Einstellungen-Apps und benutzerfreundlichen Konfigurationsassistenten unter Windows müssen Sie hin und wieder Befehle eingeben. Viele davon funktionieren nicht mit Ihrem Standardbenutzerkonto. Stattdessen müssen Sie sie als Administrator ausführen. Das Erfordernis von Administratorrechten ist in Windows noch ein relativ neues Konzept, in älteren Betriebssystemen war es jedoch weitaus länger verbreitet.
Es war so weit verbreitet, dass Betriebssystementwickler schon vor Jahrzehnten über eine Lösung für das Problem nachdachten. Unix-Installationen hatten und haben immer noch einen su
-Befehl, der „Benutzer wechseln“ bedeutet. Dies würde es Ihnen ermöglichen, das Konto zu jedem anderen Benutzer zu wechseln, Sie könnten aber auch standardmäßig als Administrator- oder Superuser-Konto des Systems ausgeführt werden. su
command, which means "switch user." This would allow you to switch accounts to any other user, but could also let you run as the administrator, or superuser, account of the system by default.
This solution worked, but logging in as the administrator to run one command seemed like overkill. As a solution, developers created the sudo command, which means either "switch user and do," or "superuser do," depending on various opinions. Long story short, the sudo command lets you easily run one command with elevated privileges—we've covered the differences between su and sudo if you're curious.
This means that the sudo command is roughly equivalent to right-clicking on the Command Prompt app, selecting Run as administrator, and running a command, like do_something
. With the help of the sudo command, you don't need to worry about remembering to run the Command Prompt as administrator. Instead, simply type sudo do_something
, and the command will work in exactly the same way.
Microsoft is adding the sudo command to Windows 11, and considering that support for Windows 10 is winding down, we don't expect to see the command coming there anytime soon. At the time of writing, the sudo command is only available for Windows Insider participants (builds 26045 and later), specifically those on the Developer and Windows Canary channels.
Unlike some features that Microsoft tests in these versions, it seems fairly likely that sudo is going to arrive on the operating system soon.
If the sudo command isn't yet available for your version of Windows, you'll need to sign up for Windows Insider. This is a simple process, but be warned: the Developer and Canary options can be unstable, so don't use them on a PC you're not willing to lose data on.
Once you're running a version of Windows that has the sudo command available, enabling it is a simple process. Open the Settings app, then select System on the left and For developers from the main area of the window.
Here, scroll down and enable the checkbox that reads Enable sudo.
If you're more command-line oriented, you can also enable sudo via the Commmand Prompt. Somewhat ironically, this requires you to run an elevated CMD window. Press the Windows key, type "command," then right-click on Command Prompt (or PowerShell) and select Run as administrator.
In this prompt, run the following command:
<code class="hljs bash">sudo config --enableenable</code>
After you've enabled the sudo command on Windows, it's simple to use. Simply prepend the sudo
command to any command you'd typically need to run as an administrator, then accept the prompts that follow.
An example from Microsoft uses the netstat
Das bedeutet, dass der Befehl sudo in etwa einem Rechtsklick auf die Eingabeaufforderungs-App, der Auswahl Als Administrator ausführen und dem Ausführen eines Befehls wie do_something
entspricht. Mithilfe des Befehls sudo müssen Sie sich keine Gedanken darüber machen, die Eingabeaufforderung als Administrator auszuführen. Geben Sie stattdessen einfach sudo do_something
ein und der Befehl funktioniert genauso.
<code class="hljs xml">sudo netstat -ab</code>
sudo
jedem Befehl voran, den Sie normalerweise als Administrator ausführen müssen, und akzeptieren Sie dann die folgenden Eingabeaufforderungen. 🎜🎜 Ein Beispiel von Microsoft verwendet den Befehl netstat
: 🎜 rrreee🎜 🎜 Diese Funktion mag etwas unnötig erscheinen – und für viele Menschen ist sie es auch. Wenn Sie jedoch Ihren Tag damit verbringen, unter Windows einen Befehl nach dem anderen auszuführen, und sich die Einfachheit des Befehls sudo wünschen, wird seine Hinzufügung Ihr Leben einfacher machen. 🎜Microsoft scheint an der Implementierung von sudo festzuhalten und geht sogar so weit, sudo auf GitHub als Open Source zu veröffentlichen. Wenn Sie durch die Lektüre mehr darüber erfahren möchten, was unter der Haube von Windows vor sich geht, werfen Sie unbedingt einen Blick auf unsere Liste mit Befehlen, die jeder Windows-Benutzer kennen sollte.
Das obige ist der detaillierte Inhalt vonDas sudo-Tool kommt für Windows: Wie und warum man es verwendet. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!