Go to documentation repository
...
기본적으로 Linux OS에서는 ngp 사용자는 /opt/AxxonSoft/AxxonOne/
...
디렉토리에만 기록할 권한을 갖습니다.
다른 디렉토리에 보관 파일을 만들려면 다음을 수행하세요.
쓰기 권한이 있는 폴더를 만듭니다
To create an archive in another directory, do the following:
Create a folder with write permissions.
Code Block |
---|
sudo mkdir -m755 /home/archive |
Change the folder owner to npg user폴더 소유자를 npg 사용자로 변경합니다.
Code Block |
---|
sudo chown -R ngp:ngp /home/archive/ |
Check the permissions on the created folder생성된 폴더의 권한을 확인하세요.
Code Block |
---|
ls -lt /home/ |
If there is a string with the ngp user permissions in the result, it is now possible to create an archive as a file in this directory결과에 ngp 사용자 권한이 있는 문자열이 있으면 이제 이 디렉토리에 파일로 보관 파일을 만들 수 있습니다.
Code Block |
---|
drw-r--r-- 2 ngp ngp 4096 aug. 8 15:18 archive |