Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- python3
- Robotics
- Melodic
- OpenAI
- Anaconda
- GYM
- wsl2
- ubuntu
- systemctl
- simulation
- RemoteDesktop
- TensorFlow
- Baselines
- Ros
- pyTorch
- bindings
- 무조코
- mujoco-py
- WSL
- Robot
- 강화학습
- Reinforcement Learning
- MuJoCo
- 주피터랩
- 우분투
- jupyter
- python
- JupyterLab
- Physics
- MuJoCo2.1.5
Archives
- Today
- Total
Creative-Chan
wsl에서 systemctl 사용하기 본문
Jupyter 서버를 자동실행하기 위해서 systemctl 명령어를 사용하려고 했을 때, 오류가 발생하였다.
System has not been booted with systemd as init system (PID 1). Can't operate.
찾아보니 wsl에서는 systemctl을 사용할 수 없어, 추가적인 설정이 필요하다.
wsl2에서는 간단하게 /etc/wsl.conf 파일을 수정함으로써 사용이 가능해졌다.
sudo vi /etc/wsl.conf
아래 내용을 삽입.
[boot]
systemd=true
저장한 뒤 종료하고, wsl을 재시작한다.
wsl --shutdown
ubuntu
이 기능을 활성화하면 이전 글과 같이 JupyterLab 서버를 자동 실행할 수 있다.
2022.03.24 - [Programming/Linux] - Jupyter Notebook (JupyterLab) 원격서버 설정하기
'Programming > Linux' 카테고리의 다른 글
Windows Deep Learning Server using WSL2 (0) | 2023.02.04 |
---|---|
우분투 reboot과 NVIDIA Driver 에러로 인한 재설치 (0) | 2022.04.01 |
Jupyter Notebook (JupyterLab) 원격서버 설정하기 (0) | 2022.03.24 |
Anaconda 가상환경을 통한 딥러닝 환경 설정 (TensorFlow, PyTorch) (0) | 2022.03.23 |
Ubuntu 18.04에서 Chrome Remote Desktop 설정하기 (0) | 2022.03.23 |
Comments