linux跳過使用者名稱密碼登陸介面方法

2021-07-04 09:50:15 字數 753 閱讀 3524

使用的是centos 6.5環境

先修改 /etc/init/tty.conf檔案

exec /sbin/mingetty 

--autologin root $tty

紅色為增加內容

在修改/etc/gdm/custom.conf 檔案

修改[daemon]選項

automaticloginenable=true

automaticlogin=root

timedloginenable=true

修改[security]

allowroot=true

下面是修改之後,重啟後的檔案

[root@localhost etc]# vi /etc/gdm/custom.conf 

# gdm configuration storage

[daemon]

automaticloginenable=true

automaticlogin=root

timedloginenable=true

timedlogin=root

timedlogindelay=7

[security]

allowroot=true

[xdmcp]

[greeter]

[chooser]

[debug]

這種方法不是每次都成功,有的root使用者不行,換成其他使用者就可以。只是做一下參考

mysql 使用者名稱密碼登陸不上

設定了使用者名稱密碼root,但是始終都鏈結不上是什麼問題呢?下面我們就來排查一下 輸入 mysql uroot proot 直接輸入mysql,連線成功 show databases 只有information schema test兩張表 說明mysql的服務是啟動的沒有問題 我們先stop m...

讓windows xp開機跳過登陸介面

2007 03 08 18 44 中國it實驗室 在家裡就自己乙個人用電腦,根本沒必要在電腦上設定密碼,雖然電腦上的密碼為空,但每次登陸的時候卻總是要用滑鼠點一下登陸介面上的使用者圖示才能登陸,非常不方便,下面我就講講如何才能讓xp跳過登陸介面。開始 執行,輸入 rundll32 netplwiz....

登陸介面的密碼記住

在android的應用開發中,我們一定會用到登陸介面記住密碼的功能。今天我們就來實現以下。這是登陸介面,介面中運用了布局的巢狀,其中的按鈕樣式,我們可以根據自己的喜好,自己定義。下面是實現過程的主要 public class loginactivity extends activity privat...