linux centos 開機關機背景畫面 設定

2021-10-05 11:56:23 字數 1249 閱讀 9684

格式必須是png格式

2、安裝 plymouth

yum install plymouth-plugin-script
3、配置plymouth

建立乙個叫tup的主題

mkdir /usr/share/plymouth/themes/tup
把png檔案複製到建立的主題資料夾中

cp /root/800.png  /usr/share/plymouth/themes/tup
建立配置檔案

vim /usr/share/plymouth/themes/tup/tup.plymouth
粘帖以下內容

[plymouth theme]

name=tup

description=the urban penguin

modulename=script

[script]

imagedir=/usr/share/plymouth/themes/tup

scriptfile=/usr/share/plymouth/themes/tup/tup.script

建立配置檔案

vim /usr/share/plymouth/themes/tup/tup.script
粘帖以下內容

wall*****_image = image("800.png");

screen_width = window.getwidth();

screen_height = window.getheight();

resized_wall*****_image = wall*****_image.scale(screen_width,screen_height);

wall*****_sprite = sprite(resized_wall*****_image);

wall*****_sprite.setz(-100);

以上配置完畢後執行

plymouth-set-default-theme  -r tup
4.重啟

然後你就會發現開機畫面是剛才的啦

5.恢復原始啟動介面執行

plymouth-set-default-theme -r text

配置Windows的開機 關機指令碼

裡面有比較詳細的介紹,這裡做乙個精簡,並對裡面沒有提到的一些東西進行總結.1.如何編輯開關機指令碼?執行 gpedit.msc,進入組策略,其中 計算機配置 裡面的是開機指令碼和關機指令碼 使用者配置 裡面的是登陸指令碼和登出指令碼 2.新增乙個 開機指令碼 關機指令碼 後,系統有那些變化?a.登錄...

虛擬機器開機 關機命令

二 reboot 1.reboor 重啟,相當於shutdown r now 2.reboot d 重新啟動時不把資料寫入記錄檔案 var tmp wtmp 3.reboot f 強制重新開機 4.reboot h 在系統關機之前,將所有的硬碟處於待機模式下 5.reboot i 關閉網路設定之後再...

開機關機廣播和電量變化廣播

廣播的使用步驟 1.註冊 在androidmanifest.xml中宣告receiver或者手動呼叫registerreceiver方法 2.宣告許可權 3.實現廣播 4.取消註冊 和註冊需要一對一呼叫 註冊 mcontext.registerreceiver mvoltagecheck,new i...