Windows で実行できる、ハッカーの雰囲気を醸し出す 5 つのターミナル コマンド

WBOY
リリース: 2024-07-15 15:38:31
オリジナル
1122 人が閲覧しました

リスクなしでハリウッドのハッカー気分を味わいたいと思ったことはありませんか?ここでは、5 つの無害なコマンドを使用して、退屈な Windows ターミナルを「ハッカー」スペースに変える方法を紹介します。

前提条件: WSL を有効にし、ターミナルの色をマトリックス グリーンに設定します

ここで紹介するコマンドの一部は Linux ネイティブ コマンドであり、Windows では実行できません。ただし、Windows Subsystem for Linux (WSL) を有効にすると、Windows ターミナルで Linux コマンドを簡単に実行できるため、心配する必要はありません。 WSL を有効にするためのクイックガイドは次のとおりです:

  1. [スタート] メニューを開きます。
  2. 「Windows の機能をオンまたはオフにする」を検索します。
  3. 下にスクロールして、「Linux 用 Windows サブシステム」の横のボックスにチェックを入れます。
  4. プロンプトが表示されたら [OK] をクリックし、PC を再起動します。
  5. 再起動後、Microsoft Store を開いて Ubuntu 24.04、またはお好みの Linux ディストリビューションを検索します。
  6. [インストール] をクリックし、ダウンロードされるまで待ちます。
  7. インストールしたら、[スタート]メニューを開き、「Ubuntu」を検索します。
  8. Ubuntu を開くと、Ubuntu ターミナル ウィンドウが表示されます。
  9. ユーザー名とパスワードを作成します。
  10. そしてそれだけです! Windows PC 上で実行されているこの Ubuntu ターミナルに Linux コマンドを入力できるようになりました。

WSL を有効にすると、準備が整いました。 The Matrix の象徴的な黒地に緑のテキストほど「ハッカー」を表すものはありません。幸いなことに、Windows ターミナルの色を簡単に変更して、この外観を実現できます。コマンド プロンプトを開いて次のように入力するだけです:

color a
ログイン後にコピー

または

color 2
ログイン後にコピー
5 Terminal Commands You Can Run on Windows that Give Big Hacker Vibes

「color」コマンドは Windows コマンド プロンプト (cmd) でのみ機能し、PowerShell では機能しません。

これらのコマンドはどちらもテキストを明るい緑色に変え、即座に端末にクラシックなハッカーの美学を与えます。デフォルトの色に戻したい場合は、単に次のように入力します:

color
ログイン後にコピー

これで見た目は理解できたので、ハッカーになったような気分にさせるいくつかのコマンドに進みましょう。

dir /s コマンドを使用して大量のスクロール テキストを作成する

最初に説明するコマンドは次のとおりです:

dir /s
ログイン後にコピー

このコマンドは、現在のディレクトリとそのすべてのサブディレクトリ内のすべてのファイルとディレクトリを一覧表示します。 C ドライブのような高レベルのディレクトリから実行すると、システムのファイル構造の奥深くに潜り込んでいるような印象的な量のスクロール テキストが生成されることがあります。

コマンドの動作は次のとおりです:

  • dir: ファイルとディレクトリをリストします
  • /s: すべてのサブディレクトリを含みます

    これを使用するには、コマンド プロンプトを開いて dir /s と入力し、画面が急速にスクロールするのを確認してください。テキスト、システム上のすべてのファイルとフォルダーを表示します。

    このコマンドは表示のためだけではなく、特定のファイルを検索したり、ディレクトリ構造の概要を取得する必要がある場合に非常に役立ちます。

    または、さらに印象的に見せるために、次のコマンドを使用します:

    rrree

    これは、情報が 1 画面分表示されるたびに出力を一時停止し、データの各行を注意深く分析しているように見せます。

    5 Terminal Commands You Can Run on Windows that Give Big Hacker Vibes

    ping-t コマンドを使用して Web サイトに継続的に ping を実行します

    次は、-t オプションを指定した ping コマンドです:

    dir /s | more
    ログイン後にコピー

    ping コマンドは、インターネット プロトコル ( IP)ネットワーク。 -t オプションを追加すると、(Ctrl+C を押して) 手動で停止するまで、指定されたアドレスへの ping を継続できます。動作は次のとおりです:

    • ping: 特定の IP アドレスまたはドメインにネットワーク リクエストを送信します
    • -t: 停止するまで ping を継続します
    • example.com: ping を送信する Web サイト。例えばgoogle.com

      このコマンドはサーバーの応答時間を継続的に表示し、リアルタイムのネットワーク パフォーマンス データを提供します。一定のデータ ストリームが視覚的に魅力的であるだけでなく、ネットワーク接続の監視にも実用的に役立ちます。

      Use cmatrix to Create the Iconic Matrix Text Rain (WSL necessary)

      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.

      Use genact to Simulate Running Random Tasks (WSL necessary)

      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:

      • Cargo: Simulates building a Rust project
      • Bootlog: Fakes downloading a file
      • Cryptomining: Pretends to mine cryptocurrency
      • Composer: Mimics compiling a Linux kernel

        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
        ログイン後にコピー

        Use hollywood to Feel Like a Hacker From The Movies (WSL necessary)

        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 サイトの他の関連記事を参照してください。

ソース:howtogeek.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!