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
- hackthissite
- mysql
- 파이썬
- deep learning
- 러닝 스칼라
- 인공지능
- BOF
- Linux
- php
- 딥러닝
- 챗GPT
- Javascript
- Scala
- hackerschool
- c++
- 경제
- Web
- 리눅스
- 웹해킹
- 러닝스칼라
- 백엔드
- flask
- BOF 원정대
- Shellcode
- Python
- hacking
- c
- webhacking
- backend
- ChatGPT
Archives
- Today
- Total
목록전체 글 (206)
jam 블로그
[리눅스] 사용자 생성,암호 생성,그룹 생성,그룹에 사용자 추가 (adduser,useradd,passwd,groupadd,groupmod,groupdel)
* 사용자 추가 (adduser or useradd) adduser [ID] ex) adduser test_id * 암호 생성 (passwd) passwd [ID] ex) passwd test_id * 그룹 생성 groupadd [GroupName] ex) groupadd kid1412 * 그룹에 사용자 추가 usermod -g groupa usera - groupa그룹에 usera 라는 멤버 등록 usermod -G groupa, groupb usera - 그룹 groupa, groupb에 동시 등록 usermod -G groupa usera - 그룹 재지정 (groupb에서 탈퇴됨)
시스템/리눅스
2009. 12. 9. 15:47
[리눅스] yum update시 오류 관련
yum update 다음과 같은 에러표시가 나오는 경우가 있다. You have enabled checking of packages via GPG keys. This is a good thing. However, you do not have any GPG public keys installed. You need to download the keys for packages you wish to install and install them. You can do that by running the command: rpm --import public.gpg.key For more information contact your distribution or package provider. "public.gpg.key..
시스템/리눅스
2009. 12. 7. 15:23