내용으로 건너뛰기
Out of the Box
사용자 도구
로그인
사이트 도구
검색
도구
문서 보기
이전 판
역링크
Fold/unfold all
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
추적:
•
2019-03_the_lottery_ticket_hypothesis_finding_sparse_trainable_neural_networks
•
2024-04_the_illusion_of_state_in_state-space_models
•
2018-03_world_models
•
2019-05_open_ended_learning_symmetric_zero_sum_games
•
2021-03_meta-learning_through_hebbian_plasticity_in_random_networks
•
2024-03_evaluate_llms_in_real_time_with_street_fighter_iii
•
co-generation_of_game_levels_and_game-playing_agents
•
2021-03_pay_attention_to_mlps
•
2021-07_megaverse_simulating_embodied_agents_at_one_million_experiences_per_second
•
2023-12_speeding_up_the_gpt_-_kv_cache
samba
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
====== Samba ======= ===== Client ===== 1. windows에서 공유폴더 생성 2. samba 설치 <code bash> sudo apt-get install samba samba-common-bin </code> 3. /etc/fstab 수정 <code bash> sudo id {user} # uid, gid 확인 //192.168.0.?/shared /mnt/shared cifs username={user},password={passwd},uid=1000,gid=1000,dir_mode=0755,file_mode=0755 0 0 # fstab에 추가 sudo mount /mnt/shared # 테스트 </code> 3.1 (또는) 명령어 입력 <code bash> sudo mount -t cifs -o username={user},password={passwd},uid=1000,gid=1000,dir_mode=0755,file_mode=0755 //WIN_SHARE_IP/<share_name> /mnt/win_share </code> * https://linuxize.com/post/how-to-mount-cifs-windows-share-on-linux/ * https://ssaemo.tistory.com/49 * https://sancs.tistory.com/109 ===== Server ===== 1. samba 서버 설치 <code bash> sudo apt install samba </code> 2. samba 계정 추가 <code bash> sudo smbpasswd -a {Ubuntu ID} </code> 3. 설정파일 수정 <code ini> # /etc/samba/smb.conf에 추가 [{share name}] comment = ... path = /home/rex8312/... read only = no browseable = yes valid users = rex8312 ... </code> 4. samba 재시작 <code bash> sudo service smbd restart </code> * https://jhnyang.tistory.com/277 * http://storycompiler.tistory.com/31
samba.txt
· 마지막으로 수정됨:
2024/03/23 02:38
저자
127.0.0.1
문서 도구
문서 보기
이전 판
역링크
Fold/unfold all
맨 위로