リスクなしでハリウッドのハッカー気分を味わいたいと思ったことはありませんか?ここでは、5 つの無害なコマンドを使用して、退屈な Windows ターミナルを「ハッカー」スペースに変える方法を紹介します。
ここで紹介するコマンドの一部は Linux ネイティブ コマンドであり、Windows では実行できません。ただし、Windows Subsystem for Linux (WSL) を有効にすると、Windows ターミナルで Linux コマンドを簡単に実行できるため、心配する必要はありません。 WSL を有効にするためのクイックガイドは次のとおりです:
WSL を有効にすると、準備が整いました。 The Matrix の象徴的な黒地に緑のテキストほど「ハッカー」を表すものはありません。幸いなことに、Windows ターミナルの色を簡単に変更して、この外観を実現できます。コマンド プロンプトを開いて次のように入力するだけです:
color a
または
color 2
「color」コマンドは Windows コマンド プロンプト (cmd) でのみ機能し、PowerShell では機能しません。
これらのコマンドはどちらもテキストを明るい緑色に変え、即座に端末にクラシックなハッカーの美学を与えます。デフォルトの色に戻したい場合は、単に次のように入力します:
color
これで見た目は理解できたので、ハッカーになったような気分にさせるいくつかのコマンドに進みましょう。
最初に説明するコマンドは次のとおりです:
dir /s
このコマンドは、現在のディレクトリとそのすべてのサブディレクトリ内のすべてのファイルとディレクトリを一覧表示します。 C ドライブのような高レベルのディレクトリから実行すると、システムのファイル構造の奥深くに潜り込んでいるような印象的な量のスクロール テキストが生成されることがあります。
コマンドの動作は次のとおりです:
これを使用するには、コマンド プロンプトを開いて dir /s と入力し、画面が急速にスクロールするのを確認してください。テキスト、システム上のすべてのファイルとフォルダーを表示します。
このコマンドは表示のためだけではなく、特定のファイルを検索したり、ディレクトリ構造の概要を取得する必要がある場合に非常に役立ちます。
または、さらに印象的に見せるために、次のコマンドを使用します:
rrree
これは、情報が 1 画面分表示されるたびに出力を一時停止し、データの各行を注意深く分析しているように見せます。
次は、-t オプションを指定した ping コマンドです:
dir /s | more
ping コマンドは、インターネット プロトコル ( IP)ネットワーク。 -t オプションを追加すると、(Ctrl+C を押して) 手動で停止するまで、指定されたアドレスへの ping を継続できます。動作は次のとおりです:
このコマンドはサーバーの応答時間を継続的に表示し、リアルタイムのネットワーク パフォーマンス データを提供します。一定のデータ ストリームが視覚的に魅力的であるだけでなく、ネットワーク接続の監視にも実用的に役立ちます。
Let's step it up a notch with a command that truly embodies the hacker aesthetic—cmatrix. This command creates the falling green text effect popularized by The Matrix movies. Now this is a Linux command, and you’ll need to first install it on your system before you can use it. To do this, open the Ubuntu terminal—or whichever Linux terminal you've installed using WSL, and enter the following command:
sudo apt install cmatrix
After installation, simply type:
cmatrix
Press CTRL+C to quit when you're done basking in the glow of your Matrix-inspired terminal.
This is another fun Linux command that generates fake but realistic-looking activity in your terminal—perfect for when you want to look busy or just enjoy some tech-themed eye candy. Same as before, you’ll first need to install genact on your system. To do this, make sure you have Rust installed in your WSL environment by entering the following command in your WSL-backed Ubuntu terminal:
sudo snap install genact
Once installed, you can run it simply by typing:
genact
Genact will start displaying various fake activities, such as compiling code, running tests, or downloading files. It's completely harmless but looks impressively technical. Some of the modules you might see include:
The command for running the modules is like this:
genact -m <em>module-name <p> </p></em>
So, if you are trying to simulate cryptomining, this is the command you'll use:
genact -m cryptomining
For our final command, let’s pull out all the stops and go full overboard with “hollywood”. This is another Linux command that creates a split-screen terminal that looks like something straight out of a Hollywood movie—the stereotypical mainstream hacker visuals.
You can run the command on your WSL powered Ubuntu terminal by entering:
hollywood
As you can see, the terminal will split into multiple terminals, each running different commands and displaying various outputs. You'll see things like network scans, server logs, code compilations, system monitoring, and much more. It's a feast for the eyes and will definitely make anyone looking over your shoulder think you're engaged in some serious hacking. To exit hollywood, simply press Ctrl+C, and you'll be back to the base terminal.
Now, in case, the command doesn't run, it means you'll need to first install it on your system. To do this, enter the following commands one-by-one into the terminal.
<code class="hljs javascript">sudo apt-add-repository ppa:hollywood/ppasudo apt-get updatesudo apt-get install byobu hollywood</code>
So, as you can see, these five terminal commands can transform your Windows terminal into a hacker's playground. This can be a fun way to satisfy your inner cyberpunk or just impress (or scare) your friends.
以上がWindows で実行できる、ハッカーの雰囲気を醸し出す 5 つのターミナル コマンドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。