• skip to content

Galileo Labs

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: start » name

name

Search

You can find the results of your search below.

Contains
  • Exact match
  • Starts with
  • Ends with
  • Contains
@tips
  • Any namespace
  • tips:vpn (5)
  • tips:android (3)
  • tips:db (3)
  • tips:gameengine (2)
  • tips:radxa (2)
  • tips:ubuntu (2)
  • tips:archlinux (1)
  • tips:blender (1)
  • tips:hw (1)
  • tips:linux (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • networknamespaces (tips:linux)

Fulltext results:

lxd
34 Hits, Last modified: 6 years ago
<file bash lxc-prepare (chmod +x)> #!/bin/bash NAME=$1 ALIAS=$2 ALIAS=${ALIAS:=xenial} lxc image sho... systemctl restart apt-cacher-ng fi lxc info $NAME >/dev/null 2>&1 if [ ! $? = 0 ]; then lxc launch $ALIAS $NAME fi if [ -f /etc/apt/apt.conf.d/proxy.conf ]; th... lxc file push /etc/apt/apt.conf.d/proxy.conf $NAME/etc/apt/apt.conf.d/ fi lxc file push /etc/in
minikube
24 Hits, Last modified: 4 years ago
.yaml> apiVersion: v1 kind: ConfigMap metadata: name: postgres-config labels: app: postgres data... apiVersion: apps/v1 kind: Deployment metadata: name: postgres spec: replicas: 1 selector: mat... app: postgres spec: volumes: - name: postgres-pv-storage persistentVolumeClaim: claimName: postgres-pv-claim containers: - na
airos
22 Hits, Last modified: 7 years ago
current radio stats // airOS_getFile_HTTP ($username, $password, $file, $address, $schema) #$out = ai... PE print $out; function airOS_getFile_HTTP ($username, $password, $file, $address, $schema) { ... curl_setopt ($ch, CURLOPT_POSTFIELDS, Array ('username' => $username, 'password' => $password)); curl_setopt ($ch, CURLOPT_HEADER, 1); $respon
openvpn @tips:vpn
20 Hits, Last modified: 8 years ago
tca </code> ==== server certificate ==== <code> NAME=legnago-gw ./pkitool --pass --server $NAME # create passphrase here openssl rsa -in keys/$NAME.key -out keys/$NAME.pem # give passphrase here chmod 600 keys/$NAME.pem </code> ==== client certificat
git
15 Hits, Last modified: 7 years ago
labla </file> <file ini ~/.gitconfig> [user] name = Stefano Scipioni email = blabla [core] ... auto </file> ===== New repo ===== <code bash> NAME=project.git mkdir $NAME cd $NAME git init --bare mv hooks/post-update* hooks/post-update chmod +x hooks/post-update git update-
video
15 Hits, Last modified: 5 years ago
] || continue SIZE=$(stat -c%s "$f") OUTNAME=$OUTDIR/${f%.*}.mkv [ -f "$OUTNAME" ] && ( echo "Skip $OUTNAME"; continue ) if [ $SIZE -gt $(($LIMIT_MBYTE*1000000)) ]; then ... :v libx264 -crf $QUALITY -c:a copy -c:s copy "$OUTNAME" else echo mkvmerge $f mkvme
proxmox
13 Hits, Last modified: 7 weeks ago
Set variables for easy customization VMID=9000 VM_NAME="ubuntu-2404-template" # A descriptive name for the template itself # Create the VM with your specified hardware qm create $VMID \ --name $VM_NAME \ --memory 8192 \ --cores 2 \ --net0 virtio,bridge=vmbr0,firewall=0 \ --net1 virtio,br
ansible
10 Hits, Last modified: 3 years ago
=== playbook ===== <file yaml helloworld.yaml> - name: helloworld hosts: nodes tasks: - name: Ping my hosts ansible.builtin.ping: - name: Print message ansible.builtin.debug: m... lloworld.yaml </code> <file yaml addkeys.yaml> - name: Add ssh key to ubuntu user hosts: nodes task
ssl
10 Hits, Last modified: 3 weeks ago
rg echo quit | openssl s_client -showcerts -servername "$API_HOST" -connect "$API_HOST":443 > cacert.pem... nginx ==== <file> server { listen 80; server_name nextcloud.csgalileo.org; server_tokens off; ... } location / { return 301 https://$server_name$request_uri; } } server { listen 443; server_name nnextcloud.csgalileo.org; ssl_certificat
ceph-on-k0s
7 Hits, Last modified: 14 months ago
: <code> ubuntu@joint-mongoose:~$ helm install --namespace "ceph-csi-rbd" "ceph-csi-rbd" ceph-csi/ceph-csi-rbd NAME: ceph-csi-rbd LAST DEPLOYED: Wed Oct 30 10:58:07 2024 NAMESPACE: ceph-csi-rbd STATUS: deployed REVISION: 1 T... goose:~$ sudo k0s kubectl -n ceph-csi-rbd get all NAME READY
fail2ban
7 Hits, Last modified: 7 years ago
r/local/bin/telegram-send -g --format markdown "`uname -n`: [Fail2Ban] jail <name> è stata avviata" actionstop = /usr/local/bin/telegram-send -g --format markdown "`uname -n`: [Fail2Ban] jail <name> è stata fermata" actioncheck = actionban = /usr/local/bin/telegram-send -g
cordova
6 Hits, Last modified: 11 years ago
droidManifest.xml <code> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> </co... llback; cb_save_env = env; const char *fname = (*env)->GetStringUTFChars(env, path, NULL); LOGD("path is %s", fname); read_gpio((char *)fname, on_new_value);
zfs
6 Hits, Last modified: 3 years ago
Start (sector) End (sector) Size Code Name 1 1026048 74426367 35.0 GiB ... zfs create rpool/libvirt virsh pool-define-as --name zfspool --source-name rpool/libvirt --type zfs virsh pool-start zfspool virsh pool-autostart zfspool </... ager) <code> virsh vol-create-as --pool zfspool --name maas2 --capacity 10G </code> destroy volume <cod
networknamespaces @tips:linux
6 Hits, Last modified: 7 years ago
====== Network Namespaces ====== ===== setup ===== install [[https://raw.githubusercontent.com/Lekenst... l </code> bash prompt, add to .bashrc <code> _ns_name=$(ip netns identify 2>/dev/null) PS1=${_ns_name:+(${_ns_name})}${PS1} unset _ns_name </code> ===== use ===== create namespace "0" <code> netns 0 sta
dns
5 Hits, Last modified: 4 years ago
e> enable rfc2136 updates on domain in /etc/bind/named.conf.local <code> zone "nawigare.it" { ........ // this is for certbot check-names warn; update-policy { grant galileo-tsig-key name _acme-challenge.nawigare.it. txt; }; ... o ===== * https://apps.db.ripe.net * MNTNER name: MNT-CSGALILEO ===== prettier ===== <code bash>
jibri
5 Hits, Last modified: 3 years ago
pcb
5 Hits, Last modified: 5 years ago
telegram
5 Hits, Last modified: 4 years ago
tmux
5 Hits, Last modified: 9 years ago
windows10
5 Hits, Last modified: 7 years ago
install @tips:archlinux
5 Hits, Last modified: 3 years ago
univr @tips:vpn
5 Hits, Last modified: 3 years ago
pptp @tips:vpn
4 Hits, Last modified: 9 years ago
brainstorming
3 Hits, Last modified: 4 years ago
helm
3 Hits, Last modified: 14 months ago
ionic
3 Hits, Last modified: 8 years ago
jupyterhub
3 Hits, Last modified: 5 years ago
keras
3 Hits, Last modified: 6 years ago
zabbix
3 Hits, Last modified: 4 years ago
postgres @tips:db
3 Hits, Last modified: 7 years ago
redis @tips:db
3 Hits, Last modified: 8 years ago
agid
2 Hits, Last modified: 4 years ago
k80
2 Hits, Last modified: 17 months ago
overpass
2 Hits, Last modified: 5 years ago
pulsar
2 Hits, Last modified: 6 years ago
pypi
2 Hits, Last modified: 3 years ago
adb @tips:android
2 Hits, Last modified: 8 years ago
gianomobile @tips:android
2 Hits, Last modified: 6 years ago
galileo @tips:vpn
2 Hits, Last modified: 17 months ago
atom
1 Hits, Last modified: 8 years ago
gnss
1 Hits, Last modified: 3 years ago
k0s
1 Hits, Last modified: 13 months ago
kvm
1 Hits, Last modified: 10 years ago
ldap
1 Hits, Last modified: 6 years ago
openspec
1 Hits, Last modified: 5 weeks ago
test
1 Hits, Last modified: 5 years ago
tridactyl
1 Hits, Last modified: 7 months ago
unms
1 Hits, Last modified: 4 years ago
bootanimation @tips:android
1 Hits, Last modified: 11 years ago
videoediting @tips:blender
1 Hits, Last modified: 6 years ago
oracle @tips:db
1 Hits, Last modified: 9 years ago
minecraft @tips:gameengine
1 Hits, Last modified: 8 years ago
minetest @tips:gameengine
1 Hits, Last modified: 8 years ago
hp @tips:hw
1 Hits, Last modified: 14 months ago
gpio @tips:radxa
1 Hits, Last modified: 11 years ago
linux @tips:radxa
1 Hits, Last modified: 10 years ago
18.04 @tips:ubuntu
1 Hits, Last modified: 7 years ago
xenial @tips:ubuntu
1 Hits, Last modified: 8 years ago
motorizzazione @tips:vpn
1 Hits, Last modified: 7 years ago

Page Tools

  • Show page
  • Old revisions
  • Backlinks
  • Add to book
  • ODT export
  • Back to top
Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki