Friday, September 15, 2023

How to Delete Repository And GPG Key In Ubuntu 18.04

ปัญหา

  • ใช้ apt update ใน Ubuntu 18.04 แล้วมีบาง source error เรื่อง key


  • ดังภาพมี 2 รายการที่มีปัญหาคือ anydesk และ dl.google มันมีปัญหาเรื่อง public key ในการเข้าถึง repo

Solved

  • เข้าไปที่ /etc/apt/sources.list ไปจัดการ comment โดย # บรรที่ที่เกี่ยวกับ 2 รายการ error
  • หรือ ถ้าใน sources.list ไม่เจอ ให้ดูไฟล์ใน folder /etc/apt/sources.list.d มันจะมีไฟล์  แยกออกมา

  • ไปคอมเม้น โดยใส่เครื่องหมาย # ประมาณนี้

Ref

  • https://bobcares.com/blog/how-to-delete-repository-and-gpg-key-in-ubuntu/#:~:text=Deleting%20a%20repository%20in%20Ubuntu&text=First%2C%20open%20the%20%2Fetc%2F,look%20for%20the%20repository%20entry.&text=And%20simply%20remove%20the%20entry,save%20and%20close%20the%20file.
  • https://itslinuxfoss.com/delete-repository-and-gpg-key-ubuntu/

Thursday, September 14, 2023

Change default crontab editor Ubuntu 18.04++

Method 1 by command

$ select-editor

Method 2 by user environment variable by command

$ export EDITOR=/path/to/editor

Ex:

$ export EDITOR=/usr/bin/nano

  • ตั้งค่า editor ให้กับ user ในระบบบางคน โดยไปเพิ่ม คำสั่ง export ในไฟล์ ~/.bashrc หรือ ~/.bash_profile เหมือน คำสั่งอื่นๆ นั่นแหละ
  • จากนั้น ให้มีผลทันทีโดยที่ไม่ต้อง logout ออกจากระบบ เลย ด้วยคำสั่ง

$ source ~/.bashrc

Ref

  • https://www.makeuseof.com/change-default-crontab-editor-linux/#:~:text=Using%20the%20select%2Deditor%20Command&text=Run%20the%20select%2Deditor%20command,corresponding%20number%20and%20press%20Enter.
  • https://askubuntu.com/questions/55022/changing-default-crontab-editor

Popular Posts