〇Rangerの画面
※実行はrangerと入力します。Qか:qでコマンドを終了します。矢印キーで移動、リターンで確定になります。
sudo apt-get update
sudo apt-get -y install ranger
sudo apt-get update
sudo apt-get -y install ranger
sudo apt-get update
sudo apt-get -y install ncdu
実行する場合はシェルからncduコマンドを実行します。sudo apt-get update
sudo apt-get -y install fish
wget https://github.com/muesli/duf/releases/download/v0.6.2/duf_0.6.2_linux_arm64.deb
sudo apt-get -y install ./duf_0.6.2_linux_arm64.deb
sudo apt-get -y install apache2 \
php7.4 \
libapache2-mod-php7.4 \
php7.4-mbstring \
php7.4-xml
wget http://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz
tar xvfz dokuwiki-stable.tgz
mv dokuwiki-2* dokuwiki
sudo mv dokuwiki /var/www/html
sudo chown -R www-data:www-data /var/www/html/dokuwiki
sudo sed -i "s/80/8080/" /etc/apache2/ports.conf
sudo service apache2 restart
mysql -uroot -proot -e "CREATE DATABASE test DEFAULT CHARACTER SET utf8mb4;"
mysql -uroot -proot -e "CREATE USER test@localhost IDENTIFIED BY 'test';"
※パスワードは適宜変更してください。mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';"
mysql -uroot -proot -e "FLUSH PRIVILEGES;"
sudo apt-get update
sudo apt-get -y install python3-pip python3-distutils python3-dev
sudo pip3 install --upgrade setuptools
sudo pip3 install pipenv
echo "export PIPENV_VENV_IN_PROJECT=true" >> ~/.bashrc
source ~/.bashrc
mkdir -p ~/pythonmariadb
cd ~/pythonmariadb
pipenv --python 3
pipenv install PyMySQL
pipenv shell
import pymysql.cursors
conn = pymysql.connect(host='localhost', user='test', password='test', db='test', cursorclass=pymysql.cursors.DictCursor)
with conn.cursor() as cur:
sql = "SELECT version()"
cur.execute(sql)
result = cur.fetchall()
print(result)
conn.close()
python test.py
[{'version()': '10.3.32-MariaDB-0ubuntu0.20.04.1'}]
sudo apt-get -y install cron vim
sudo service cron start
sudo crontab -e
* * * * * /usr/bin/date >> /tmp/sample
cat /tmp/sample
※結構実行間隔が空くときあるようです(端末/アプリのスリープ時?)。sudo apt-get update
sudo apt-get -y install mariadb-server mariadb-client
sudo mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
※最初はパスワードがないのでリターンキー
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n] y
New password:
Re-enter new password:
※パスワードを2回入力
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] y
※yを入力
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] y
※yを入力
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] y
※yを入力
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y
※yを入力
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
mysql -uroot -p -e "select version();"
Enter password:
+----------------------------------+
| version() |
+----------------------------------+
| 10.3.32-MariaDB-0ubuntu0.20.04.1 |
+----------------------------------+