sudo apt install ffmpegthumbnailer

Posted by jtfafa
,

sudo add-apt-repository ppa:trebelnik-stefina/grub-customizer
sudo apt update
sudo apt install -y grub-customizer

Posted by jtfafa
,

use admin
db.createUser({user: "jtfafa" , pwd: passwordPrompt() , roles: ["userAdminAnyDatabase", "dbAdminAnyDatabase", "readWriteAnyDatabase"]})

user board
db.createUser({user: "board" , pwd: passwordPrompt() , roles: ["dbAdmin", "readWrite"]})

Posted by jtfafa
,

gsettings set org.gnome.desktop.session idle-delay 3600

Posted by jtfafa
,

echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
sudo apt update
sudo apt install libssl1.1

wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list

sudo apt update
sudo apt install -y mongodb-org

sudo systemctl start mongod
sudo systemctl status mongod
sudo systemctl enable mongod

 

--------------------------------------------------------------------------------------------------------------------------------------

메모리 등 사양 때문에 Active가 안될 경우 4.4 버젼으로 설치해야 한다.

echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
sudo apt update
sudo apt install libssl1.1

wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list

sudo apt update
sudo apt install -y mongodb-org=4.4.11 mongodb-org-server=4.4.11 mongodb-org-shell=4.4.11 mongodb-org-mongos=4.4.11 mongodb-org-tools=4.4.11

sudo systemctl start mongod
sudo systemctl status mongod
sudo systemctl enable mongod

Posted by jtfafa
,

sudo add-apt-repository ppa:ubuntuhandbook1/gvfs

sudo apt update

sudo apt install gvfs

 

Posted by jtfafa
,

cd ~/.local/share/gnome-shell/extensions

git clone https://github.com/atareao/panel-date-format.git

mv panel-date-format.git panel-date-format@atareao.es

cd panel-date-format@atareao.es

vi metadata.json

cd schemas

vi es.atareao.panel-date-format.gschema.xml

%Y년 %m월 %d일 (%a),  %r

glib-compile-schemas ~/.local/share/gnome-shell/extensions/panel-date-format@atareao.es/schemas/

Posted by jtfafa
,

gnome-extensions disable ubuntu-dock@ubuntu.com

Posted by jtfafa
,

curl -H "Host: cdn.hancom.com" -H "Referer: https://www.hancom.com/cs_center" -fLO https://cdn.hancom.com/pds/hnc/DOWN/gooroom/hoffice_11.20.0.1520_amd64.deb

gsettings set org.freedesktop.ibus.engine.hangul use-event-forwarding false

Posted by jtfafa
,

/etc/docker/daemon.json
{
"bip": "192.168.137.254/24"
}
변경 없으면 추가

Posted by jtfafa
,