Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
/* eslint-disable @typescript-eslint/camelcase */ | |
import { drive_v3 } from "googleapis"; | |
import { GaxiosResponse } from "gaxios"; | |
import mime from "mime"; | |
import fs, { ReadStream } from "fs"; | |
import File from "./file"; | |
import path from "path"; | |
import { escapeSingleQuotes } from "../util"; | |
class Directory extends File { |
#!/bin/bash | |
sudo add-apt-repository -y ppa:git-core/ppa | |
sudo apt-get update | |
sudo apt-get install git -y |
#!/bin/sh | |
#Check the Drive Space Used by Cached Files | |
du -sh /var/cache/apt/archives | |
#Clean all the log file | |
#for logs in `find /var/log -type f`; do > $logs; done | |
logs=`find /var/log -type f` | |
for i in $logs |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers