http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html
Download files:
| ---------------------------------------------------------------------------------------------------- | |
| tcpdump -s 0 #capture entire etherner header and IP packet | |
| tcpdump -ni tap55ec3c7f-91 ip6 #locate the ICMPv6 packets | |
| tcpdump -s0 -n -i any -w /tmp/$(hostname)-smbtrace.pcap #if the SMB client or SMB server is a Unix host,Troubleshooting Server Message Block (SMB) | |
| tcpdump -D #Print the list of the network interfaces available on the system and on which tcpdump can capture packet | |
| tcpdump -X -vvv -n -i eth0 |
| <?php | |
| // For port 24 host without scheme is just fine | |
| // Add scheme, if using secure connection. Port 465 or 587 | |
| $host = 'ssl://smtp.strato.de'; | |
| //$host = 'tls://smtp.strato.de'; | |
| $port = 465; | |
| //$port = 25; | |
| $errorNumber; | |
| $error; | |
| $timeout = 10; |
| #Update system & reboot | |
| sudo apt update && sudo apt -y upgrade | |
| sudo reboot | |
| #Install Asterisk 16 LTS dependencies | |
| sudo apt -y install git curl wget libnewt-dev libssl-dev libncurses5-dev subversion libsqlite3-dev build-essential libjansson-dev libxml2-dev uuid-dev | |
| #Add universe repository and install subversio | |
| sudo add-apt-repository universe | |
| sudo apt update && sudo apt -y install subversion |
update the newly created instance
sudo apt update -y
Install rtpengine dependecies
sudo apt-get install debhelper iptables-dev libcurl4-openssl-dev
libpcre3-dev libxmlrpc-core-c3-dev markdown libavfilter-dev
libavformat-dev libavresample-dev libevent-dev libglib2.0-dev libhiredis-dev
libjson-glib-dev libpcap0.8-dev libpcap-dev libssl-dev dkms module-assistant
| ## Create Compute | |
| $ gcloud beta compute --project=dialogflow-ivr instances create "freepbx" --zone "us-central1-a" --machine-type=n1-standard-1 --subnet=default --network-tier=PREMIUM --maintenance-policy=MIGRATE --service-account=293782603063-compute@developer.gserviceaccount.com --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --image=centos-7-v20200420 --tags "http-server","https-server" --image-project=centos-cloud --boot-disk-size=40GB --boot-disk-type=pd-standard --boot-disk-device-name=instance-1 --no-shielded-secure-boot --shielded-vtpm --shielded-integrity-monitoring --reservation-affinity=any | |
| ## Edit the VM, add the following metadata label: | |
| startup-script : sudo ufw ssh | |
| ## SSH into the machine | |
| $ gcloud compute ssh <instancename> --project=p |
| #!/bin/sh | |
| set -xe | |
| rm -rf generated/ | |
| mkdir -p generated/ | |
| openssl ecparam -name prime256v1 -out generated/nistp256.pem | |
| openssl ecparam -name secp384r1 -out generated/nistp384.pem |
| { | |
| "1": "Müşteri Hizmetleri Asistanı", | |
| "2": "Helpdesk Uzmanı", | |
| "3": "Webmaster", | |
| "4": "Perakende Satış Yöneticisi", | |
| "5": "Kurumsal Pazarlama Temsilcisi", | |
| "6": "Ön Büro Müdür Yardımcısı", | |
| "7": "Aktif Satış Müdürü", | |
| "8": "Kurumsal İletişim ve Marka Sorumlusu", | |
| "9": "Gişe Memuru", |
| <?php | |
| /* | |
| * Run this artisan command before: | |
| * php artisan make:command MakeConfig | |
| */ | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; |
Packaging JavaScript applications can be a bit overwhelming. The popular project uglifyjs does not support ES6, it is cumbersome to configure the allmighty Webpack, bundlers like Parcel and Microbundle still have bugs or do not compile to ESM bundles that work in a browser. It is hard to figure out the best way to bundle an application.
Here I give a small example, how we achieve the goal using the