Ubuntu 홈 디렉토리에서 폴더 이름을 바꾸는 방법
폴더 이름이 라틴 알파벳으로 지정되지 않으면 콘솔 작업이 불편해집니다.
어떻게 이름을 바꾸나요?
새 폴더 만들기:
mkdir desktop ; mkdir doc; mkdir downloads ; mkdir images ; mkdir music ; mkdir public ; mkdir templates ; mkdir video
콘텐츠 전송:
cp -r Рабочий\ стол/* desktop/ ; cp -r Загрузки/* downloads/ ; cp -r Документы/* doc/ ; cp -r Загрузки/* downloads/* ; cp -r Изображения/* images/ ; cp -r Музыка/* music/ ; cp -r Общедоступные/* public/ ; cp -r Примеры/* templates/ ; cp -r Видео/* video/
~/.config/user-dirs.dirs 폴더에서 다음을 교체합니다.
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_PUBLICSHARE_DIR="$HOME/Общедоступные"
XDG_DOWNLOAD_DIR="$HOME/Загрузки"
XDG_MUSIC_DIR="$HOME/Музыка"
XDG_VIDEOS_DIR="$HOME/Видео"
XDG_DESKTOP_DIR="$HOME/Рабочий стол"
XDG_DOCUMENTS_DIR="$HOME/Документы"
XDG_TEMPLATES_DIR="$HOME/Шаблоны"
XDG_PICTURES_DIR="$HOME/Картинки"
이에:
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run.
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/desktop"
XDG_DOWNLOAD_DIR="$HOME/downloads"
XDG_TEMPLATES_DIR="$HOME/templates"
XDG_PUBLICSHARE_DIR="$HOME/public"
XDG_DOCUMENTS_DIR="$HOME/doc"
XDG_MUSIC_DIR="$HOME/music"
XDG_PICTURES_DIR="$HOME/images"
XDG_VIDEOS_DIR="$HOME/video"
구하다.
컴퓨터를 다시 시작하십시오.
오래된 폴더를 삭제하십시오.
Reference
이 문제에 관하여(Ubuntu 홈 디렉토리에서 폴더 이름을 바꾸는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/vadimfilimonov/how-to-rename-folders-in-the-ubuntu-home-directory-2oal텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)