This is very simple, edit /etc/default/grup
, replace quiet
to splash
, then run sudo update-grub
.
Reference: https://unix.stackexchange.com/questions/537346/re-enable-shutdown-messages-ubuntu-18-04-server
This is very simple, edit /etc/default/grup
, replace quiet
to splash
, then run sudo update-grub
.
Reference: https://unix.stackexchange.com/questions/537346/re-enable-shutdown-messages-ubuntu-18-04-server
# -*- coding: utf-8 -*- | |
import csv | |
import math | |
import datetime | |
import pytz | |
class _5coin_structure: | |
def __init__(self, row: tuple): | |
self.datetime = row[0] | |
self.category = row[1] |
ALTER USER 'root'@'localhost' IDENTIFIED BY 'FUcK_Y0u_new_My$ql_pa$$wd_p0licy'; | |
SET GLOBAL validate_password.check_user_name = OFF; | |
SET GLOBAL validate_password.length = 1; | |
SET GLOBAL validate_password.mixed_case_count=0; | |
SET GLOBAL validate_password.number_count=0; | |
SET GLOBAL validate_password.policy=LOW; | |
SET GLOBAL validate_password.special_char_count=0; | |
ALTER USER 'root'@'localhost' IDENTIFIED BY 'root'; |
#!/bin/sh | |
version=$1 | |
yum -y install gcc gcc-c++ kernel-devel glibc-static libstdc++-static | |
cd /opt | |
wget ftp://gcc.gnu.org/pub/gcc/releases/gcc-$version/gcc-$version.tar.$2 | |
tar $3 gcc-$version.tar.$2 -C /usr/local/src | |
cd /usr/local/src/gcc-$version | |
./contrib/download_prerequisites | |
mkdir /usr/local/build | |
mkdir /usr/local/build/gcc-$version |
#!/bin/sh | |
yum -y update | |
yum -y groupinstall "Development Tools" | |
yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel | |
version=7.15 | |
cd /opt | |
wget --no-check-certificate https://www.python.org/ftp/python/2.$version/Python-2.$version.tgz | |
tar xzf Python-2.$version.tgz | |
cd Python-2.$version | |
./configure --prefix=/usr/local |