1
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 3 years have passed since last update.

シンボリックについて

Last updated at Posted at 2018-09-28

#これを書こうと思った理由
LinuxでCTFの勉強をしていた際、gccのバージョンをさげたいと思い、シンボリックが分からなかったため、この記事をかこうと思いました。

#シンボリックとは
Linuxで使用されるファイルシステムの機能の1つです。あるファイルやフォルダを示す別のファイルを作成して、そこを通じて本体のファイルやフォルダを参照出来るようにする仕組みです。

#lnコマンド
ln…ファイルのリンクを作成するコマンドです。
ln [オプション] ファイル名 リンク名
オプションは-sが一番使うのでsを覚えていればいいと思います。
Shimokita.php

#gccのバージョンのさげ方

$sudo add-repository ppa:ubuntu-toolchain-r/test
$sudo apt-get update
$sudo apt-get install gcc-4.7
$rm /usr/bin/gcc
$sudo ln -s /usr/bin/gcc-4.7 /usr/bin/gcc

今回はgccのバージョンを4.7にしましたけど、自分の違うバージョンでも大丈夫です。

1
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
1
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?