0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linuxとは

Last updated at Posted at 2020-04-06

そもそもLinuxとは?

  • LinuxとはOSの一種である。OSとは、画面操作や情報を渡すなど、コンピュータの土台のようなもの。
  • LinuxはオープンソースのOSであり、オープンソースとは無料で可変可能なプログラムのようなもの。Linuxの機は MacOSやWindowsOSなどとあまり変わらないが、無料で新たにサーバーを立ち上げたり、OSを作ったりすることができる。
  • Linuxの操作はCUIでコマンドを打って操作する。

Linuxコマンド

  • ディレクトリ移動
shell
$ pwd  //作業しているディレクトリを表示

$ cd ディレクト名  //ディレクトリを変更

  • ファイル表示
shell
$ ls  //今いるディレクトリにあるファイルを表示
  • ファイル操作
shell
$ mkdir ディレクトリ名  //ディレクトリを作成
$ cp コピーしたいファイル コピー後の名前  //コピー
$ mv 移動させたいファイル 移動先  //移動
$ rm ファイル名  //削除
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?