hj01
@hj01

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

ディレクトリ移動できない

解決したいこと

https://www.hypertextcandy.com/start-laravel-project-on-windows
上記のサイトのように作成しているのですが下記のエラーが発生し、移動できません。
Homesteadファイルの中にCodeファイルは入っています。
どのようなコマンドを入力すれば実行できますか?
「コマンドラインでプロジェクトを作成する」を行おうとしています。
~の部分はどのようなコマンドを入力すればいいですか?

スクリーンショット (43).png

発生している問題・エラー

vagrant@homestead:~$ cd Code
-bash: cd: Code: No such file or directory

Homestead.yaml

---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: ~/Code
      to: /home/vagrant/Code

sites:
    - map: sample.local
      to: /home/vagrant/Code/sample/public

databases:
    - homestead

# ports:
#     - send: 50000
#       to: 5000
#     - send: 7777
#       to: 777
#       protocol: udp

# blackfire:
#     - id: foo
#       token: bar
#       client-id: foo
#       client-token: bar

# zray:
#  If you've already freely registered Z-Ray, you can place the token here.
#     - email: foo@bar.com
#       token: foo
#  Don't forget to ensure that you have 'zray: "true"' for your site.
0

1Answer

Comments

  1. @hj01

    Questioner

    lsコマンドで実行したら、以下のようになりました。
    vagrant@homestead:~$ ls -l
    total 0
    vagrant@homestead:~$
  2. @hj01

    Questioner

    すいません。cd /vagrantとコマンド実行し、
    次にcd codeとコマンド実行したら、
    ディレクトリ移動がうまくいきました。
    すいません。勉強不足なところがありました。

Your answer might help someone💌