자유게시판

?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부

하모니카3.0 새로 설치했는데, 하드디스크가 이동식 디스크로 잡히네요?

 

바이오스에 핫스왑등의 설정은 꺼져있는데, C 드라이브(SSD) 를 제외하고는 패널 오른쪽에 이동식 디스크로 나오네요.

 

안 보이게 하는 방법이 있을까요?

 

ssd 에  efi, /, /home, /tmp 이렇게 설치했는데요

 

fstab 에서 discard, noatime, nodirtime 설정을 추가해야할까요?

 

아니면 기본 트림만으로 충분할까요?

 

 

스크린샷, 2020-09-11 20-59-51.png

 

  • profile
    Kevin 2020.09.12 09:31

    하모니카 개발팀의 Kevin 입니다.

    화면의 애플릿은 디바이스의 마운트 해제가 가능한 경우에 해당 애플릿에서 나타나게 됩니다.

    만약 다른 하드디스크를 다른 경로로 사용하는 경우 fstab 의 설정을 아래와 같이 설정하면 나타나지 않습니다.

    # Using Other HDD as HOME

    UUID=<자신의 디스크 UUID>   /home    ext4          defaults       0       2 

     
    즐거운 주말 보내세요~
  • ?
    Moordev 2020.09.12 12:05
    그리고 SSD라면 discard는 넣어놓는 것을 추천합니다.
    자동 Trim이 discard옵션이 붙어야 작동됩니다. 서버용도에너 데이터가 날아갈경우를 대비해서 TRIM이 빈번하게 이뤄지지 않는다는 군요!
  • ?
    타조 2020.09.13 14:31
    # /etc/fstab: static file system information.
    #
    # Use 'blkid' to print the universally unique identifier for a
    # device; this may be used with UUID= as a more robust way to name devices
    # that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    # / was on /dev/sda2 during installation
    UUID=0f9c59c2-51aa-4de8-b195-ad1435340d97 / ext4 errors=remount-ro,discard 0 1
    # /boot/efi was on /dev/sda1 during installation
    UUID=2229-6E60 /boot/efi vfat umask=0077 0 1
    # /home was on /dev/sda3 during installation
    UUID=1593389f-131d-47d7-9788-eec5a78d35fb /home ext4 defaults,discard 0 2
    # /home/hamonikr20/hd103si was on /dev/sde1 during installation
    UUID=b7ae9e07-41b5-4d4f-a552-d11ab2fc00c5 /home/hamonikr20/hd103si ext4 defaults 0 2
    # /home/hamonikr20/hd753lj was on /dev/sdf1 during installation
    UUID=aa9b19a4-ffe3-444b-81b7-6cc179041af2 /home/hamonikr20/hd753lj ext4 defaults 0 2
    # /home/hamonikr20/hds7220 was on /dev/sdc1 during installation
    UUID=eb7eee1d-3e63-4362-a275-238d59c9623e /home/hamonikr20/hds7220 ext4 defaults 0 2
    # /home/hamonikr20/ids7220 was on /dev/sdd1 during installation
    UUID=d1faecea-e6ea-43cd-8c1e-40fdbdf09672 /home/hamonikr20/ids7220 ext4 defaults 0 2
    # /home/hamonikr20/wd80emaz was on /dev/sdb1 during installation
    UUID=43b538d5-09ee-41bd-b7c8-a4a4554267b7 /home/hamonikr20/wd80emaz ext4 defaults 0 2
    # /tmp was on /dev/sda4 during installation
    UUID=7719a5cc-9cb3-4dff-a1bb-7bcf482040b5 /tmp ext4 defaults,discard 0 2
    /swapfile none swap sw 0 0

    kevin 님 그리고 moordev 님 답변 감사합니다.
    제 초기 설정이 이렇게 되어 있고, moordev 님 조언대로 discard 만 추가되어 있습니다.
    알려주신 것과 다르지 않아서, 다른 방법이 있는지 궁금합니다.
  • profile
    Kevin 2020.09.14 09:53

    일단 현재 마운트된 드라이브를 모두 해제하시고 아래처럼 하면서 확인해보신 후 설정해보세요.

     

    1) fstab 파일 백업

    sudo cp /etc/fstab /etc/fstab.backup

     

    2) 현재 마운트된 하드디스크 해제

    sudo umount /dev/sdb* /dev/sdb* /dev/sdc* /dev/sdd* /dev/sdf*

     

    3) UUID 확인 후 복사

    sudo blkid

     

    4) fstab 수정

    sudo xed /etc/fstab

     

    UUID=<your_UUID_for_2nd HDD partitions> /home    ext4          defaults       0       2

    -> 보여주신 위치말고 위의 예 처럼 /home 으로 설정해주세요.

     

    5) 수정한 fstab 내용으로 마운트

    sudo mount -a

     

    즐거운 하루 보내세요~


  1. 하모니카OS 뿐만 아니라 다른 리눅스 배포판에도 좋은 가이드 링크 공유

    Date2021.02.16 By프리나눔 Views612 Votes0
    Read More
  2. 하모니카6 설치했더니 메모리 인식을 못하네요

    Date2022.12.21 ByZer0 Views592 Votes0
    Read More
  3. 하모니카5.0 백신설치문의

    Date2021.11.08 By그이름을위하여 Views782 Votes0
    Read More
  4. 하모니카5.0

    Date2022.02.07 By해중이 Views770 Votes0
    Read More
  5. 하모니카3.0은 와인이 자동적으로 설치가 되어있나요?

    Date2020.03.01 By라루미 Views754 Votes0
    Read More
  6. 하모니카3.0 프린터설치

    Date2019.11.20 By가람 Views840 Votes0
    Read More
  7. 하모니카3.0 새로 설치했는데, 하드디스크 관련 질문드려요^^

    Date2020.09.11 By타조 Views778 Votes0
    Read More
  8. 하모니카(민트) 필수 프로그램

    Date2020.05.14 By어린프로그레머 Views1327 Votes0
    Read More
  9. 하모니카 프로젝트의 도덕성에 대해 묻습니다.

    Date2019.06.10 By김호동 Views954 Votes0
    Read More
  10. 하모니카 페이지 오타

    Date2023.11.11 Bykillsystem10 Views575 Votes0
    Read More
  11. 하모니카 좋네요!

    Date2020.03.05 By동네노는이장 Views832 Votes0
    Read More
  12. 하모니카 젤 편할 때

    Date2023.01.12 By은선 Views707 Votes0
    Read More
  13. 하모니카 저장소에 nimf 패키지가 없다고 나오네요.

    Date2021.03.29 By군만두 Views1821 Votes0
    Read More
  14. 하모니카 저장소 서버 확인 바랍니다

    Date2019.11.09 By반시12 Views948 Votes0
    Read More
  15. 하모니카 입문자 업데이트 매니저 질문이요

    Date2021.01.18 By리아 Views593 Votes0
    Read More
  16. 하모니카 인터페이스를 우분투에서 사용할 수 없나요?

    Date2020.12.15 By잘몰라요. Views754 Votes0
    Read More
  17. 하모니카 운영체제가 군대 컴의 표준이 되겠군요.

    Date2019.10.26 By세벌 Views1084 Votes0
    Read More
  18. 하모니카 업데이트가 잘 안되는데요...

    Date2021.01.15 Bytelnet Views599 Votes0
    Read More
  19. 하모니카 실행시 Wifi 연결 관련 질문

    Date2021.12.11 By재팔 Views671 Votes0
    Read More
  20. 하모니카 스펠링?

    Date2018.03.16 By세벌 Views807 Votes0
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 95 Next
/ 95
CLOSE