最近我试着安装Ubuntu15.10,尽管在安装过程中遇到了“根目录”的麻烦,但我决定不安装。但是每次我启动(从usb),启动菜单显示在下面的图像弹出,它发出非常响亮。这真的是令人尴尬的在公共场合,并想知道如何让它启动这个菜单静默。
📷
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n '
我在命令下面运行,将数据插入到mysql数据库中。sql查询是可以的。但是在运行查询之后,将出现一个提示来输入密码。但是在我的数据库中没有设置密码。因此,如果我按enter键而不写任何东西,那么它就是插入数据。如何避免这个提示。这意味着我希望这个命令能直接发挥作用。没有提示输入密码。
Enter password:
linux-pott:/opt/lampp/htdocs # mysql -uroot -p -e 'insert into dialer_rate(date_time,time,mno,trx_type,trx_result,trx_value) values(
场景是这样的:
password作为散列密码返回到输入字段,
1-第一个用户不更新密码;在这种情况下,只返回当前哈希密码,
2-否则用户更新他/她的密码,然后散列新密码,然后将其保存在数据库中。
那么如何检查返回的密码是否经过哈希处理呢?
代码:
public int UpdatePrivilege(User user, int changerId, string pwd)
{
if (user.pwd == pwd) //how to check if hashed or not.
{
user.pwd = _Md5Hash(user.pwd);
}