![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FHLDhg%2FbtqSLHtxl2q%2F5naa20X1ECzLRAGux7S1J1%2Fimg.png)
[Linux/Ubuntu] su : Authentication failure
우분투 설치 후 root계정의 비밀번호를 설정하는 과정이 없었다면, "su : Authentication failure" 에러가 발생한다. root 계정의 비밀번호를 설정해주지 않은것 자체가 문제였던것이다. 따라서 root 계정의 비밀번호를 업데이트 해주고 난 후에 root 계정에 접근하면 된다. sudo passwd root
우분투 설치 후 root계정의 비밀번호를 설정하는 과정이 없었다면, "su : Authentication failure" 에러가 발생한다. root 계정의 비밀번호를 설정해주지 않은것 자체가 문제였던것이다. 따라서 root 계정의 비밀번호를 업데이트 해주고 난 후에 root 계정에 접근하면 된다. sudo passwd root
티스토리 기본 폰트가 너무 맘에 안들어서 구글링 하다가 발견! 하지만, 기본적인 html/css구조를 알아야 사용할 수 있을것같습니다. 구글 폰트 기본주소이고, fonts.google.com/ Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com fonts.google.com/?subset=korean 한국으로 설정했을때, 주소입니다. Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com 한국으로 설정했을때 화면 입니다 원하는 폰트를 선택 후 , [+Se..
ls -td1 *.{파일포맷} | tail -n +{제외 파일 개수} | xargs rm -f [예시] gitlab 백업 파일이 용량이 너무 많이 차지해서 정리가 필요하다. ls -td1 *.tar | tail -n +15 | xargs rm -f [1] 포맷이 *.tar파일들 중에서 최근 15개 파일을 제외하고 삭제 [2] 현 상태(포맷이 *.tar파일들 중)에서 최근 10개 파일을 제외하고 삭제
Service 등록을 한다면, 리눅스가 재부팅(reboot)되었을때, 자동으로 start를 해준다. 또한 stop, restart등 어플리케이션을 관리할수있다. 1. Service파일 만들기( .service파일) 2. Service파일 등록 3. Service관련 명령어 1. Service파일 만들기( .service파일) 1) [Unit] Description= 해당 서비스에 대한 상세한 설명 2) [Unit] After=해당 서비스의 시작된 이후 나열된 서비스를 실행한다. ( After=network.target 의 경우 서버를 제공한다면 사용) 3) [Service] Type=[simple|forking|oneshot|notify|dbus] 서비스 타입을 선언한다. simple (기본값) - 서비..