3
3

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.

AWS Cloud9のファイルツリーに好きな場所を表示する

Last updated at Posted at 2019-10-05

はじめに

環境を作る際に記入したEnvironment Pathとホームディレクトリしかファイルツリーで表示することができませんでした。/var/www/htmlをファイルツリーに表示したい。

シンボリックリンクを作成する

シンボリックリンクを作成したら表示されました。

ln -s [表示させたいパス] [Environment Pathに設定したパス]

/var/www/htmlを表示させたく、Environment Pathに/home/usernameを設定したため

ln -s /var/www/html /home/username

としました。
PresentHtmlInFileTreeForCloud9.png
表示できました。

Environment Path

対象の環境を選択し、[Edit] - [Advanced settings]の順にクリックすることで確認できます。

アクセス権限

Cloud9上でファイルの保存・削除を行うとPermission deniedといったエラーが発生するかもしれません。chmodなどでファイルのアクセス権限を変えてあげてください。

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?