Skip to content

Instantly share code, notes, and snippets.

@nanusdad
nanusdad / alfresco-on-docker-cheatsheet.md
Last active July 21, 2023 08:12
Alfresco on Docker cheatsheet
View alfresco-on-docker-cheatsheet.md
@nanusdad
nanusdad / adding-more-than-2TB-disk-to-Windows.md
Last active May 20, 2023 05:37
Adding more than 2TB disk to Windows
View adding-more-than-2TB-disk-to-Windows.md

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 / alfresco-acs-deployment-community.md
Last active May 17, 2023 10:50
Alfresco ACS deployment (Community) with docker-compose
View alfresco-acs-deployment-community.md
@nanusdad
nanusdad / increasing-partition-size-ubuntu.md
Last active May 18, 2023 02:44
Increasing size of partition in Ubuntu 20.04
View increasing-partition-size-ubuntu.md
@nanusdad
nanusdad / drupal.conf
Last active March 30, 2023 11:50
Installing Drupal 10 on Ubuntu 20.04
View drupal.conf
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
View setup-nodejs-app-nginx-mongodb.md
@nanusdad
nanusdad / mariadb-cheatsheet.md
Created December 20, 2022 11:31
MariaDB cheatsheet
View mariadb-cheatsheet.md
@nanusdad
nanusdad / getting-started-with-Meteor-on-Alpine-Linux.md
Last active October 12, 2022 11:59
Getting started with Meteor on Alpine Linux
View getting-started-with-Meteor-on-Alpine-Linux.md
  1. Install Alpine Linux Virtual ISO
wget https://dl-cdn.alpinelinux.org/alpine/v3.16/releases/x86_64/alpine-virt-3.16.2-x86_64.iso
# Get the version you need at https://alpinelinux.org/downloads/
  1. Make sure the environment variable for the proxy server is set correctly
export HTTP_PROXY=http://user:pass@http://proxy_server:proxy_port
@nanusdad
nanusdad / getting-started-with-Meteor-on-Ubuntu.md
Last active October 10, 2022 07:26
Getting started with Meteor Ubuntu
View getting-started-with-Meteor-on-Ubuntu.md
  1. Create appuser group
  2. Create appuser
  3. Login as appuser
su - appuser
  1. Install nvm
5. Install Meteor