Google Cloud Shell을 활용하여, Linux 환경을 구축하자.
https://shell.cloud.google.com/
로그인 - Google 계정
이메일 또는 휴대전화
accounts.google.com
# You can change the working directory using the cdcommand, an abbreviation for ‘change directory’.
## The “/” directory, often referred to as the root directory, is the base of that unified file system.
cd / # root로 이동.
## Typing cd on its own is a quick shortcut to get back to your home directory
cd # home으로 이동
# There’s one other handy shortcut which works as an absolute path.
## As you’ve seen, using “/” at the start of your path means “starting from the root directory”.
cd /abc/def # root 안의 abc 안의 def 경로.
## Using the tilde character (“~”) at the start of your path similarly means “starting from my home directory”.
cd ~/ghi # home 안의 ghi 경로.
'dev-setup' 카테고리의 다른 글
[Server] Send(Copy) local data to Server (0) | 2025.03.24 |
---|---|
[Server] Connect and change pw (using vsCode) (0) | 2025.03.20 |
[Ubuntu] VirtualBox로 window에서 Ubuntu 실행하기 (0) | 2025.03.17 |
[AWS] EC2 중지 및 계정 삭제 (0) | 2025.03.04 |
[Docker Pro] 결제 취소하기 (0) | 2025.02.28 |