Skip to content

Long's blog

Góp nhặt của một kẻ mù công nghệ :p

  • My Info
    • Đỗ Thành Long’s CV
    • My Github
    • My Youtube
    • My Google Scholar
    • My Facebook
  • Café
    • soiqualang_chentreu
    • Trắng Xóa!
    • Capuchino
    • Robusta Café
    • Đen nóng Café
  • Dev
    • Web
    • Công nghệ
    • Uncategorized
  • GIS
    • Shared Map
    • QGIS
    • WebGIS
    • PostgreSQL, PostGIS
    • GeoServer
    • Openlayers
  • Viễn thám
  • Research
    • Ý tưởng
    • Research
    • Sói’s Tutorials
  • Tài liệu
    • GIS – Remote Sensing news
    • Tài liệu
    • Dữ liệu
    • Mẹo vặt
  • My Apps
    • Khoa học thường thức
    • Trắng Xóa – Danh ngôn
    • Harmonica tabs
    • Ảnh chế hài hước, dzui dzui
    • GeoGIS
    • Guitar tabs – Viettabs
    • 2000 Phác đồ điều trị bệnh
    • Q2A
    • Học HTML
    • Openlayers Cookbook
    • OpenLayers3 Leaflte Cookbook
    • OpenLayers Create Code
    • PostgreSQL Tools
    • Get link Remote Sensing Data
    • Lon,Lat Decimal
    • Download Landsat Images
    • Tra cứu vận đơn Viettel Post
    • GET Map OGC WMS, WFS, WCS services
    • PHP-SLD Generate
    • Viettabs.cf – Guitar tabs sharing
    • Files to Videos
  • Other
    • Reading
    • Games
    • Harvest Moon

Category: Linux

Docker Backup, Restore PostgreSQL Database

Posted on 03/11/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux, Mẹo vặt Tagged backup, database, Docker, postgresql, RestoreLeave a Comment on Docker Backup, Restore PostgreSQL Database

Docker Backup, Restore PostgreSQL Database Single Database PostgreSQL Backup Single Database sudo docker exec -t –user pg_username pg_container_name pg_dump -c -p 5432 -U pg_username "database_name" > "/path/on/your/machine/dump.sql" PostgreSQL Restore Single Database sudo docker exec -t –user pg_username pg_container_name psql -c […]

Read More

Linux wget Dropbox public link

Posted on 30/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged dropbox, get direct link, wgetLeave a Comment on Linux wget Dropbox public link

Linux wget Dropbox public link Just add ?dl=1 at the end of the link! For example: https://www.dropbox.com/s/mx9eqve5l2ipgyk/test.txt?dl=1 That should give you a fine retrieval of the file in question without adding anything to the file. One more thing! If you wanna save the […]

Read More

[Linux] Adjust and increase the capacity of VDI virtual drive to install Ubuntu on VirtualBox

Posted on 29/09/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux, Mẹo vặt, Sói's Tutorials Tagged Linux, ubuntu, VDI, VirtualBoxLeave a Comment on [Linux] Adjust and increase the capacity of VDI virtual drive to install Ubuntu on VirtualBox

[Linux] Adjust and increase the capacity of VDI virtual drive to install Ubuntu on VirtualBox Problems encountered I have deployed an ubuntu server on the virtualbox virtualization platform, I divided the hard drive space is 200GB, but after creating and […]

Read More

[Sưu tầm] Điều chỉnh tăng dung lượng ổ đĩa ảo VDI cài Ubuntu trên VirtualBox

Posted on 29/09/202229/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged LVM, ubuntu, VDI, VirtualBoxLeave a Comment on [Sưu tầm] Điều chỉnh tăng dung lượng ổ đĩa ảo VDI cài Ubuntu trên VirtualBox

[Sưu tầm] Điều chỉnh tăng dung lượng ổ đĩa ảo VDI cài Ubuntu trên VirtualBox https://thuanbui.me/dieu-chinh-tang-dung-luong-o-dia-ao-vdi-cai-ubuntu-tren-virtualbox/ Bài viết hướng dẫn cách điều chỉnh tăng dung lượng ổ cứng ảo cài đặt Ubuntu Một ngày đẹp trời, máy ảo Ubuntu cài […]

Read More

Linux remove nginx completely

Posted on 26/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux Tagged Linux, nginxLeave a Comment on Linux remove nginx completely

Linux remove nginx completely Removes all but config files. sudo apt-get remove nginx nginx-common Removes everything. sudo apt-get purge nginx nginx-common After using any of the above commands, use this in order to remove dependencies used by nginx which are […]

Read More

[PostgreSQL Linux] Remove installed PostgreSQL in opt dir

Posted on 19/09/202219/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux Tagged Database Engines, postgresqlLeave a Comment on [PostgreSQL Linux] Remove installed PostgreSQL in opt dir

[PostgreSQL Linux] Remove installed PostgreSQL in opt dir I installed PostgreSQL through the installation file, so the installation directory is /opt/PostgreSQL/10 I tried sudo apt-get –purge remove postgresql* but this did not work for me. In my case uninstaller was […]

Read More

Docker Compose Can’t find a suitable configuration file in this directory

Posted on 18/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, Docker ComposeLeave a Comment on Docker Compose Can’t find a suitable configuration file in this directory

Docker Compose Can’t find a suitable configuration file in this directory Err Info ERROR: Can't find a suitable configuration file in this directory or any parent. Are you in the right directory? Supported filenames: docker-compose.yml, docker-compose.yaml, compose.yml, compose.yaml Fix Err […]

Read More

Docker clear unused Docker images, volumes

Posted on 08/08/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, LinuxLeave a Comment on Docker clear unused Docker images, volumes

Docker clear unused Docker images, volumes https://stackoverflow.com/questions/32723111/how-to-remove-old-and-unused-docker-images # unused Docker images sudo docker image prune -a # unused Docker volumes sudo docker volume prune

Read More

Backing up your docker volumes

Posted on 27/06/202227/06/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged backup, Docker, docker volumesLeave a Comment on Backing up your docker volumes

Backing up your docker volumes https://github.com/soiqualang/docker-backup-volume How to backup your volume backup-volume.sh will create a new running docker container and mount the volume to the container. A docker cp will be run and the contents of the volume will be saved into a […]

Read More

Awesome Docker Compose

Posted on 27/06/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, Docker ComposeLeave a Comment on Awesome Docker Compose

Awesome Docker Compose Danh sách các Docker Compose phổ biến Just pull and run =)) https://github.com/docker/awesome-compose Awesome Compose  A curated list of Docker Compose samples. These samples provide a starting point for how to integrate different services using a Compose […]

Read More

wttr.in | Check weather in terminal

Posted on 27/05/202227/05/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux, Mẹo vặt Tagged terminal, weather, wttr.inLeave a Comment on wttr.in | Check weather in terminal

wttr.in | weather app for the terminal https://github.com/chubin/wttr.in wttr.in — the right way to ~check~ curl the weather! wttr.in is a console-oriented weather forecast service that supports various information representation methods like terminal-oriented ANSI-sequences for console HTTP clients (curl, httpie, […]

Read More

[Rclone] Config rclone to support diffie-hellman-group-exchange-sha256 diffie-hellman-group-exchange-sha1

Posted on 25/05/2022 by soiqualang_chentreu Posted in Lang thang, Linux Tagged Linux, mount, rclone, sftpLeave a Comment on [Rclone] Config rclone to support diffie-hellman-group-exchange-sha256 diffie-hellman-group-exchange-sha1

[Rclone] Config rclone to support diffie-hellman-group-exchange-sha256 diffie-hellman-group-exchange-sha1 Err info haugiang@hg-nn-web:/$ rclone mount backup_sftp:/NongNghiep/ /gdrive2/ –allow-non-empty 2022/05/25 03:09:25 Failed to create file system for "backup_sftp:/NongNghiep/": NewFs: couldn't connect SSH: ssh: handshake failed: ssh: no common algorithm for key exchange; client offered: […]

Read More

Cài Docker Compose trên Ubuntu (Linux)

Posted on 19/05/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux Tagged Docker, Docker Compose, Linux, ubuntuLeave a Comment on Cài Docker Compose trên Ubuntu (Linux)

Cài Docker Compose trên Ubuntu (Linux) Lỗi Unable to locate package docker-compose-plugin Ban đầu mình cài với lệnh sudo apt install docker-compose-plugin, tuy nhiên bị lỗi sau: Unable to locate package docker-compose-plugin haugiang@hg-nn-web:/nongnghiep/docker/postgresql$ sudo apt-get update Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease […]

Read More

[Install SSL Certificate into Linux] Installing Certificate PFX into Unbuntu Linux

Posted on 10/05/202210/05/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Linux, ssl, SSL CertificateLeave a Comment on [Install SSL Certificate into Linux] Installing Certificate PFX into Unbuntu Linux

[Install SSL Certificate into Linux] Installing Certificate PFX into Unbuntu Linux Export Private Key and Certificate from PFX file Export the Private Key openssl pkcs12 -in domain.com.pfx -nocerts -out domain.com.pem -nodes Export the Certificate openssl pkcs12 -in domain.com.pfx -nokeys -out […]

Read More

rclone – Fatal error: failed to mount FUSE fs

Posted on 10/05/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Linux, rcloneLeave a Comment on rclone – Fatal error: failed to mount FUSE fs

rclone – Fatal error: failed to mount FUSE fs Error info 2022/05/10 04:07:15 mount helper error: fusermount: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf 2022/05/10 04:07:15 Fatal error: failed to mount FUSE fs: fusermount: exit status 1 […]

Read More

Posts navigation

Older posts
Buy me a coffee - MOMO

Tags

Android Android studio api App Bundle ArcGIS Capacitor cloudflare database Docker gdal geoserver gis git github Google Earth Engine guitar htaccess Ionic IOS javascript JS GIS Jupyter Notebook leaflet Linux Machine learning map MapServer mysql Nodejs openlayers php Pokemon postgis postgresql python QGIS raster remote sensing sql tools ubuntu viettabs.cf viễn thám webgis wordpress

Recent Posts

  • IONIC Error: Unknown argument: platform
  • QGIS OpenDay November 2022
  • AI tự động sinh JD tuyển dụng
  • [JS GIS] JavaScript GIS Simplify | GeoToolbox
  • [JS GIS] JavaScript GIS Dissolve | GeoToolbox

Recent Comments

  • soiqualang_chentreu on Hướng dẫn đăng ký Google Developer – Upload app to Google Play
  • Huan on Hướng dẫn đăng ký Google Developer – Upload app to Google Play
  • afagh on Sentinel 2 Atmospheric Correction in Google Earth Engine
  • afagh on Sentinel 2 Atmospheric Correction in Google Earth Engine
  • soiqualang_chentreu on Sentinel 2 Atmospheric Correction in Google Earth Engine

Categories

  • Capuchino
  • Công nghệ
  • Dữ liệu
  • GIS
  • Google Earth Engine
  • Lang thang
  • Linux
  • Mẹo vặt
  • QGIS Tutorials and Tips
  • Research
  • Sói's Tutorials
  • Tài liệu
  • Uncategorized
  • Viễn thám
  • Web
  • WebGIS
  • Ý tưởng

Archives

  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • November 2020
  • September 2020
  • August 2020
  • August 2019
  • July 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • October 2017
  • September 2017
  • August 2017
  • June 2017
  • May 2017
  • April 2017

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Copyright 2022. All rights reserved.


Back To Top