wsl시간안맞을때

기타 2022. 1. 5. 00:11

https://wslhub.com/wsl-firststep/troubleshoot/timesync/

 

wsl 내에 시간이 host와 맞지 않는경우가 있음

 

하드웨어 시간과 동기화하려면

sudo hwclock -s

 

 

하드웨어 동기화로 안됐다면 시간서버와 동기화 필요

sudo apt -y install chrony
chrony 서비스를 켭니다. chrony 에 의해 주기적으로 시간이 동기화 됩니다.

sudo service chrony start

 

 

 

 

 

'기타' 카테고리의 다른 글

docker 한글설정  (0) 2018.02.19
Posted by rjh
,

노트북에서 코드로 변경하는 방법

 

from notebook.auth import passwd
passwd()

 

 

 

'python' 카테고리의 다른 글

python 오브젝트 함수,변수 리스트  (0) 2018.04.02
디렉토리 순회  (0) 2018.03.09
dictionary sort  (0) 2018.02.19
python2 utf8인코딩  (0) 2017.07.29
python string to dict or list etc...  (0) 2016.12.29
Posted by rjh
,

라이브러리

react 2021. 9. 19. 00:19

yarn add axios

axios - backend api 호출을 위해

import axios from 'axios';

 

yarn add react-router-dom

router 를 위한 라이브러리

import { BrowserRouter, Link, Route } from 'react-router-dom';

 

 

yarn add qs

router get 쿼리의 파라미터 (?parm=value) 파싱

import { qs } from 'qs';

 

'react' 카테고리의 다른 글

yarn 설치  (0) 2021.09.18
react - 설치  (0) 2021.08.26
Posted by rjh
,