Skip to content

Instantly share code, notes, and snippets.

@viktorpetryk
viktorpetryk / linux-tips.md
Last active December 2, 2022 08:57
Linux Tips

Making a bootable USB from ISO

dd if=/path/to/ubuntu.iso of=/dev/sdX
@viktorpetryk
viktorpetryk / postman-install.md
Created September 15, 2018 15:58
Postman installation

Postman installation

Download from https://app.getpostman.com/app/download/linux64
sudo tar -xzf %file_name% -C /opt
sudo ln -s /opt/Postman/Postman /usr/local/bin/postman
@viktorpetryk
viktorpetryk / mailhog-install.md
Last active January 27, 2023 09:08
MailHog installation on Ubuntu

Install & Configure MailHog

  1. Download and make it executable
wget https://github.com/mailhog/MailHog/releases/download/v1.0.0/MailHog_linux_amd64
sudo cp MailHog_linux_amd64 /usr/local/bin/mailhog
sudo chmod +x /usr/local/bin/mailhog
  1. Make MailHog as a service
@viktorpetryk
viktorpetryk / m2-install.md
Last active November 13, 2023 16:04
Magento 2 installation on Laragon (Windows 10)
  1. Create root directory for project:
mkdir magento2.test
  1. Cd to created directory:
cd magento2.test