Skip to content

Instantly share code, notes, and snippets.

View gideonshaked's full-sized avatar
👋

Gideon Shaked gideonshaked

👋
View GitHub Profile
@crucialbit
crucialbit / Linux Directory Structure Diagram.txt
Last active March 19, 2023 03:40
Linux Directory Structure Diagram
/bin : All the executable binary programs (file) required during booting, repairing, files required to run into single-user-mode, and other important, basic commands viz., cat, du, df, tar, rpm, wc, history, etc.
/boot : Holds important files during boot-up process, including Linux Kernel.
/dev : Contains device files for all the hardware devices on the machine e.g., cdrom, cpu, etc
/etc : Contains Application’s configuration files, startup, shutdown, start, stop script for every individual program.
/home : Home directory of the users. Every time a new user is created, a directory in the name of user is created within home directory which contains other directories like Desktop, Downloads, Documents, etc.
/lib : The Lib directory contains kernel modules and shared library images required to boot the system and run commands in root file system.
/lost+found : This Directory is installed during installation of Linux, useful for recovering files which may be broken due to unexpected shut-down.
/media : Temporary
@probonopd
probonopd / linux_fusion360.md
Last active May 21, 2024 07:40
Autodesk Fusion 360 on Linux

Autodesk Fusion 360 on Linux

In the Web Browser

Ubuntu, Fedora, openSUSE, CentOS, SUSE Linux Enterprise, Debian,... users can finally use Autodesk Fusion 360 in the Linux Browser now.

https://myhub.autodesk360.com

On Chromium 55.0.2843.0 I get NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED.

@gideonshaked
gideonshaked / docker-compose.yml
Last active August 2, 2020 20:02
Docker-Compose for adblocking DoH with WireGuard
version: "3"
services:
# pihole
pihole:
container_name: pihole
image: pihole/pihole:latest
restart: always
privileged: true
ports:
- "53:53/tcp"
@gideonshaked
gideonshaked / bw-server-backup
Created January 14, 2021 01:35
A bash script to back up bitwarden_rs db and attachments with rclone
#!/usr/bin/env bash
#
###################################################################################################################
# Script to back up Bitwarden_rs db and attachments with rclone. Overall, this script should be preferred to
# bitwarden-backup.sh because it backs up all users and does not need to be run interactively.
#
# Note that this script does not encrypt the backup because Bitwarden stores it already encrypted.
#
# This script is specific to my setup. It had to have some workarounds due to permissions issues and other things.
# Please test it before you try it!