Skip to content

Instantly share code, notes, and snippets.

@nanusdad
nanusdad / docker-behind-http-https-proxy.md
Last active December 12, 2023 06:59
Docker configuration behind HTTP or HTTPS proxy

Docker configuration behind HTTP or HTTPS proxy

Create http-proxy configuration file

sudo mkdir -p /etc/systemd/system/docker.service.d
sudo vi /etc/systemd/system/docker.service.d/http-proxy.conf

Add lines similar to the ones below and save file

[Service]
Environment="HTTP_PROXY=http://proxy.example.com:3128"
@nanusdad
nanusdad / raspberry-pi-getting-hardware-info.md
Created November 24, 2023 03:53
Raspberry Pi - Getting hardware information

Raspberry Pi - Getting hardware information

cat /proc/cpuinfo                             # CPU info
cat /sys/firmware/devicetree/model            # Model info
cat /proc/version                             # Software info
free -h                                       # RAM Details
@nanusdad
nanusdad / alfresco-on-docker-cheatsheet.md
Last active May 23, 2024 08:53
Alfresco on Docker cheatsheet

Alfresco on Docker cheatsheet

Create PostgreSQL dump

# find postgresql container ID
sudo  docker ps | grep postgres | awk '{ print $1 }'

# open shell on container (replace container id)
sudo docker exec -it cb96ca00911e /bin/bash
@nanusdad
nanusdad / adding-more-than-2TB-disk-to-Windows.md
Last active May 20, 2023 05:37
Adding more than 2TB disk to Windows

Adding more than 2TB disk to Windows

Maximum capacity of MBR partition tables is only about 2 terabytes. One can use a drive that's larger than 2 terabytes with MBR, but only the first 2 terabytes of the drive will be used. The rest of the storage on the drive will be wasted.

GPT partition tables offer a maximum capacity of 9.7 zetabytes.

If a new large disk has been added - Use Disk Management or diskpart to initialize disk with GPT and then create a volume.

If disk already has MBR partition tables then follow tests below -

@nanusdad
nanusdad / adding-new-disk-ubuntu-20.04.md
Last active May 18, 2023 03:58
Adding additional disk in Ubuntu 20.04

Adding additional disk in Ubuntu 20.04

Check if disk is physically / virtually added to the system

lshw -C disk

Look for the logical name

e.g.

  *-disk:1
 description: SCSI Disk
@nanusdad
nanusdad / alfresco-acs-deployment-community.md
Last active May 17, 2023 10:50
Alfresco ACS deployment (Community) with docker-compose

Alfresco ACS deployment (Community) with docker-compose

Getting started

git clone https://github.com/Alfresco/acs-deployment
cd acs-deployment/docker-compose
cp docker-compose.yml docker-compose.yml-orig # save original
cp community-docker-compose.yml docker-compose.yml
docker compose up 
# OR
@nanusdad
nanusdad / increasing-partition-size-ubuntu.md
Last active May 18, 2023 02:44
Increasing size of partition in Ubuntu 20.04

Increasing size of partition in Ubuntu 20.04

df -h
vgdisplay
lvdisplay
lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
lvdisplay
df -h
resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv
df -h
@nanusdad
nanusdad / drupal.conf
Last active March 30, 2023 11:50
Installing Drupal 10 on Ubuntu 20.04
server {
listen 80;
root /var/www/html/drupal;
index index.php index.html index.htm;
server_name _;
location / {
@nanusdad
nanusdad / setup-nodejs-app-nginx-mongodb.md
Last active January 19, 2023 05:47
Setting up NodeJS app with NGINX and MongoDB on Ubuntu 20.04

Setting up NodeJS app with NGINX and MongoDB on Ubuntu 20.04

  1. Install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
nvm install --lts
  1. Install nginx