2019年1月31日 星期四

Ubuntu python3 下安裝 tkinter

$ sudo apt update
$ sudo apt install python3-tk
OK

2019年1月28日 星期一

Ubuntu python3 下安裝 pygame

  • 檢查有無安裝 python3
    $ python3 --version
       Python 3.6.7
  • 檢查有無安裝 pip3
    $ pip3 --version
       pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)
  • 以 pip 安裝 pygame
    $ pip3 install Pygame==1.9.4
       Collecting Pygame==1.9.4
       Downloading https://files.pythonhosted.org/packages/b3/5e/fb7c85304ad1fd52008fd25fce97a7f59e6147ae97378afc86cf0f5d9146/pygame-1.9.4-cp36-cp36m-manylinux1_x86_64.whl (12.1MB)
        100% |████████████████████████████████| 12.1MB 139kB/s
    Installing collected packages: Pygame
    Successfully installed Pygame-1.9.4

2019年1月10日 星期四

關於 GRUB2

你可以自行增加 GRUB 開機選單條目:

  • 編輯 /etc/grub.d/40_custom 這個 GRUB 的設定檔
  • 以讓硬碟中的 ISO 映像檔開機為例,加入以下程式碼:

    menuentry "Ubuntu 13.04 Live" {
     set root=(hd0,1)
     loopback loop /isoimage/ubuntu-13.04-desktop-i386.iso
     linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/isoimage/ubuntu-13.04-desktop-i386.iso noprompt noeject
     initrd (loop)/casper/initrd.lz
    } 

  • 重新開機

以 grml-rescueboot 套件新增 GRUB 選單條目啟動 ISO 檔

grml-rescueboot 是一個用於輔助 update-grub 的套件,它提供一個 update-grub 專用的指令稿(script),讓所有放在 /boot/grml 目錄下的 Grml ISO 映像檔可以自動被加入開機選單中,它的目的就是可以讓使用者在不需要 CD/DVD 或 USB 隨身碟的情況下,使用這些映像檔開機然後進入 Grml 的救援模式。
  • 安裝 grml-rescueboot:
    $ sudo apt install grml-rescueboot
  • 將要用來開機的映像檔複製到 /boot/grml/ 目錄中
  • 更新 GRUB2 的開機選單:$ sudo update-grub
  • 重新開機