--[과거 완료]---------[완료 과거]---------[현재완료]------------

 --[                 불완료 과거                                  ]

 

현재분사( -  ando, iendo)

 

 

 

[완료과거]

시제는 과거에 끝난 사건을 나타낸다 [최근과거]

 

[불완료과거]

과거에 진행되고 있거나 반복된 사건을 나타낸다

 

 

[과거완료]

 

과거에 일어난 두개의 이야기를 하는 경우 그중 시간적으로 앞선 일을 나타내며,

 

 haber 동사의 불완료 과거시제   habi'a, habi'as, habi'a, habi'amos, habi'ais, habi'an   와 과거 분사 ( -  ado,-ido) 가 결합된 형태이다.

 

내가 오늘 아침 공항에 도착했을대 비행기는 이미 떠났었다.

 Cuando he llegado al areopuerto esta manana, el avion , ya habi'a salido

 

 

현재완료:  haber + p.p

 

 

현재분사: 동사원형 +  ing

~ 하는, ~하고 있는

 

과거분사: 동사원형 + ed(규칙),p.p( 불규칙)

의미: ~ 당한, ~된

 

  broken mirror

 

'작심3일 > 외국어나 한번!!' 카테고리의 다른 글

지시사  (0) 2025.01.02
부정 대명사  (0) 2025.01.01
단어  (0) 2024.03.03
algo alguno  (0) 2023.11.28
실비아샘 스페인어  (0) 2023.11.26

 

from notebook.auth import passwd   

 

해당 모듈  import  시 설치가 되어 있지 않다고  나올 경우

(base) root@jupyterlab-deployment-96d5cd489-kjrd4:~# jupyter notebook --generate-config
Writing default config to: /home/jovyan/.jupyter/jupyter_notebook_config.py

 

 

!pip3 install notebook==6.5.5

 

이렇게 해서 해결이 안되면

 

!pip3 install --upgrade ipython 

요렇게 도 해본다

 

다시

from notebook.auth import passwd    

 

# 아래 전체가 암호이다

'argon2:$argon2id$v=19$m=10240,t=10,p=8$QbPT9aYvhdqRFecguJX5sg$ArunzaJ65DCEA6MnCL7N9Y2m0Y1XwVCR3N95PC3lGxE'

 

 

(base) root@jupyterlab-deployment-96d5cd489-kjrd4:~/.jupyter# vi jupyter_notebook_config.py

 

 없으면 추가

 

c.ServerApp.password_required = True
c.PasswordIdentityProvider.hashed_password = 'argon2:$argon2id$v=19$m=10240,t=10,p=8$QbPT9aYvhdqRFecguJX5sg$ArunzaJ65DCEA6MnCL7N9Y2m0Y1XwVCR3N95PC3lGxE'

 

 

deply.yaml 에서 

           chmod -R 777 /home/jovyan/work
              start.sh jupyter lab --LabApp.token='password' --LabApp.ip='0.0.0.0' --LabApp.allow_root=True


        해당 부분을   

start.sh jupyter lab --LabApp.token='' --LabApp.password='' 

 

이렇게 변경

해당 부분을

 

 

 

jupyter-deploy.txt
0.00MB

 

 

apiVersion: apps/v1
kind: Deployment
metadata:
  name: jupyterlab-deployment
  namespace: default
spec:
  replicas: 1
  selector:
    matchLabels:
      app: jupyterlab
  template:
    metadata:
      labels:
        app: jupyterlab
    spec:
      securityContext:
        runAsUser: 0
        fsGroup: 0
      containers:
        - name: jupyterlab
          image: jupyter/datascience-notebook:latest
          imagePullPolicy: IfNotPresent
          ports:
          - containerPort: 8888
          command:
            - /bin/bash
            - -c
            - |
              chmod -R 777 /home/jovyan/work
              start.sh jupyter lab --LabApp.token='' --LabApp.password='' --LabApp.ip='0.0.0.0' --LabApp.allow_root=True
              #start.sh jupyter lab --LabApp.token='password' --LabApp.ip='0.0.0.0' --LabApp.allow_root=True
          volumeMounts:
            - name: jupyterlab-data
              mountPath: /home/jovyan/work
              #mountPath: /data
            - name: jupyterlab-config
              mountPath: /home/jovyan/.jupyter
          securityContext:
              runAsUser: 0
          resources:
            requests:
              memory: 500Mi
              cpu: 250m
      restartPolicy: Always
      volumes:
      - name: jupyterlab-data
        #persistentVolumeClaim:
        #claimName: fileshare-pvc
        hostPath:
           path: /home/sysic/Data
      - name: jupyterlab-config
        hostPath:
           path: /home/sysic/config

 

################### 홈 디렉토리 변경하기 #########################################

 

(base) root@jupyterlab-deployment-6886db8858-rf68k:~/.jupyter# pwd
/home/jovyan/.jupyter
(base) root@jupyterlab-deployment-6886db8858-rf68k:~/.jupyter# more jupyter_notebook_config.py |grep jaeyon
c.ServerApp.root_dir = '/home/jaeyong'
(base) root@jupyterlab-deployment-6886db8858-rf68k:~/.jupyter#



apiVersion: apps/v1
kind: Deployment
metadata:
  name: jupyterlab-deployment
  namespace: default
spec:
  replicas: 1
  selector:
    matchLabels:
      app: jupyterlab
  template:
    metadata:
      labels:
        app: jupyterlab
    spec:
      securityContext:
        runAsUser: 0
        fsGroup: 0
      containers:
        - name: jupyterlab
          image: jupyter/datascience-notebook:latest
          imagePullPolicy: IfNotPresent
          ports:
          - containerPort: 8888
          command:
            - /bin/bash
            - -c
            - |
              chmod -R 777 /home/jaeyong
              #chmod -R 777 /home/jovyan/work
              start.sh jupyter lab --LabApp.token='' --LabApp.password='' --LabApp.ip='0.0.0.0' --LabApp.allow_root=True
              #start.sh jupyter lab --LabApp.token='password' --LabApp.ip='0.0.0.0' --LabApp.allow_root=True
          volumeMounts:
            - name: jupyterlab-data
              mountPath: /home/jaeyong
              #mountPath: /home/jovyan/work
              #mountPath: /data
            - name: jupyterlab-config
              mountPath: /home/jovyan/.jupyter
          securityContext:
              runAsUser: 0
          resources:
            requests:
              memory: 500Mi
              cpu: 250m
      restartPolicy: Always
      volumes:
      - name: jupyterlab-data
        #persistentVolumeClaim:
        #claimName: fileshare-pvc
        hostPath:
           path: /home/sysic/Data
      - name: jupyterlab-config
        hostPath:
           path: /home/sysic/config

 

 

'일상다반사 > 이런저런 생각들' 카테고리의 다른 글

2024-12 그래도 가끔은 웃긴 인생  (1) 2024.12.12
2024-05 삶이 지칠 때  (1) 2024.05.07
배우는 사람  (0) 2023.05.10
힘들때 읽자! 듣자!  (0) 2023.04.03
금주  (0) 2021.07.17

 

 

 

 

*

application/octet-stream

 

'나는 노동자 > 이런저런 Tip' 카테고리의 다른 글

iPhone 강제로 재시동하기  (0) 2023.11.03
ntp offset 추출 - ansible  (0) 2023.07.23
미드저니 기본 명령어  (0) 2023.05.13
windows os hostname s/n ip  (0) 2023.03.20
grafana plugin 수동설치  (0) 2023.03.03

"Algún" = Some
"Algunos" = plural of "algún"
"Alguna" is female and is the same meaning of "algún"
"Algunas"= plural of "alguna"
"Alguien"= Someone
"Algo"= Something

Nada= Nothing
Ningún=None
Ninguno= is the same of "ningún"
Ninguna= the same but female
Nadie= No one, nobody

'작심3일 > 외국어나 한번!!' 카테고리의 다른 글

지시사  (0) 2025.01.02
부정 대명사  (0) 2025.01.01
단어  (0) 2024.03.03
스페인어 과거 시제  (0) 2024.01.20
실비아샘 스페인어  (0) 2023.11.26

블로그 주소

 

https://m.blog.naver.com/silviaspanish?proxyReferer= 

 

실비아스페인어 : 네이버 블로그

스페인어 전문 어학 교육 및 교재를 출판하는 실비아스페인어입니다. #기업출강 #키즈스페인어 #AP시험대비 010-8423-8959

m.blog.naver.com

 

https://www.youtube.com/watch?app=desktop&v=Z_0qkotvv_U

 

 

'작심3일 > 외국어나 한번!!' 카테고리의 다른 글

지시사  (0) 2025.01.02
부정 대명사  (0) 2025.01.01
단어  (0) 2024.03.03
스페인어 과거 시제  (0) 2024.01.20
algo alguno  (0) 2023.11.28

'나는 노동자 > 이런저런 Tip' 카테고리의 다른 글

IIS FILE HTTP 오류 404.3 - Not Found  (0) 2023.12.12
ntp offset 추출 - ansible  (0) 2023.07.23
미드저니 기본 명령어  (0) 2023.05.13
windows os hostname s/n ip  (0) 2023.03.20
grafana plugin 수동설치  (0) 2023.03.03

패턴은  ntpq -p에서 

     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 0.ubuntu.pool.n .POOL.          16 p    -   64    0    0.000    0.000   0.000
 1.ubuntu.pool.n .POOL.          16 p    -   64    0    0.000    0.000   0.000
 2.ubuntu.pool.n .POOL.          16 p    -   64    0    0.000    0.000   0.000
 3.ubuntu.pool.n .POOL.          16 p    -   64    0    0.000    0.000   0.000
 ntp.ubuntu.com  .POOL.          16 p    -   64    0    0.000    0.000   0.000
-send.mx.cdnetwo 125.185.190.74   2 u   58   64  377    1.035   -2.002   1.485
*121.162.54.1    13.209.84.50     3 u   60   64  377    2.872    1.390   0.772
+121.174.142.82  220.73.142.66    3 u   58   64  377    8.309   -3.675   1.064
+mail.innotab.co 13.209.84.50     3 u   55   64  377    2.898   -2.468   0.951
-121.174.142.81  220.73.142.66    3 u   59   64  377    7.741   -1.928   1.586

 

+121.174.142.82  220.73.142.66    3 u   58   64  377    8.309   -3.675   1.06
-121.174.142.81  220.73.142.66    3 u   59   64  377    7.741   -1.928   1.586

요부분  오프셋 추출

 

응용해서 사용하길 

 

 ---
- name: Get NTP offset values from remote servers
  hosts: your_remote_servers  # 특정 원격 서버의 호스트 그룹 또는 호스트명으로 변경해주세요.
  gather_facts: yes

  tasks:
    - name: Get NTP offset from remote servers
      shell: "ntpq -p | awk '/^[+-]?[0-9]+\\.[0-9]+/ { print $9 }'"
      register: ntp_offsets_raw

    - name: Extract NTP offset values
      set_fact:
        ntp_offsets: "{{ ntp_offsets_raw.stdout_lines | select('match', '^[+-]?[0-9]+\\.[0-9]+') | map('float') | list }}"
      when: ntp_offsets_raw.stdout_lines is defined

    - name: Save NTP offset to file
      block:
        - name: Save NTP offset to file with two values
          copy:
            content: |
              {% if ntp_offsets | length >= 1 %}
              off1={{ ntp_offsets[0] }}
              {% endif %}
              {% if ntp_offsets | length >= 2 %}
              off2={{ ntp_offsets[1] }}
              {% endif %}
            dest: /home/ansible/result.txt
          when: ntp_offsets | length >= 1


'나는 노동자 > 이런저런 Tip' 카테고리의 다른 글

IIS FILE HTTP 오류 404.3 - Not Found  (0) 2023.12.12
iPhone 강제로 재시동하기  (0) 2023.11.03
미드저니 기본 명령어  (0) 2023.05.13
windows os hostname s/n ip  (0) 2023.03.20
grafana plugin 수동설치  (0) 2023.03.03

https://deepdaive.com/wp-content/uploads/2023/05/image-12.png

'나는 노동자 > 이런저런 Tip' 카테고리의 다른 글

iPhone 강제로 재시동하기  (0) 2023.11.03
ntp offset 추출 - ansible  (0) 2023.07.23
windows os hostname s/n ip  (0) 2023.03.20
grafana plugin 수동설치  (0) 2023.03.03
grafana table column변경  (0) 2022.07.20

+ Recent posts