[Raspberry Pi] カメラのセットアップ[Raspberry Pi] カメラのセットアップ
購入したカメラモジュールはこちら。 Camera Module V2 – Raspberry Pi https://www.raspberrypi.org/products/camera-module-v2/ […]
購入したカメラモジュールはこちら。 Camera Module V2 – Raspberry Pi https://www.raspberrypi.org/products/camera-module-v2/ […]
以下ページの手順をなぞってRaspberry Piを立ち上げる。 Installing operating system images – Raspberry Pi Documentation https:/ […]
into outfile “ファイル名” を付けると、指定したファイルに出力される。 mysql> select * from db1 into outfile "test.dump"; フ […]
カラムの情報はinformation_schema.columnsに格納されているので、必要なものだけ絞り込んで取得すればよい。 information_schema.columnsの構造は以下。 mysql> u […]
Windowsで大量にファイルをコピーしようとすると、”preparing for copy” といったメッセージが表示されて何か前処理が行われるみたい。VPN経由でネットワークドライブから大量の […]
rootになってpasswdに続けてパスワード変更したいユーザ名を入力。 # passwd user1 参考サイト ◇パスワードの設定と変更◇初心者のためのLinuxサーバー構築講座(CentOS 自宅サーバー対応)☆お […]
参考サイトから抜粋。 カレント行で最初に合致した文字列を置換する :s/置換対象文字列/置換後文字列/ カレント行の全置換対象文字列を置換する :s/置換対象文字列/置換後文字列/g ファイル全体の全置換対象文字列を置換 […]
CentOS 6以前 # service crond status //状態取得 # service crond start //起動 # service crond stop //停止 # chkconfig --li […]
参考サイトより: 全てのデータベースのサイズを確認する select table_schema, sum(data_length+index_length) /1024 /1024/1024 as GB from inf […]
以下、AWSドキュメントより抜粋: MySQL バイナリログ形式を設定するには https://console.aws.amazon.com/rds/ にある Amazon RDS コンソールを開きます。 [Naviga […]
以下、リファレンスマニュアルより抜粋: – MySQL 5.6 では、デフォルトのバイナリロギング形式は STATEMENT です。 – ロギング形式は実行時でも変更できます。すべてのクライアント […]