• 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.

Starts with
  • Exact match
  • Starts with
  • Ends with
  • Contains
Any namespace
  • Any namespace
  • tips (45)
  • projects (27)
  • kubernetes (2)
  • playground (1)
  • wiki (1)
  • zibaldone (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 @tips
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 @tips
20 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 persistentVolumeCl... me: postgres-pv-claim containers: - name: postgres image: postgres:12
openvpn @tips:vpn
18 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
plate @projects
14 Hits, Last modified: 4 years ago
cls), 'w') """ Get input text file list """ txt_name_list = [] for (dirpath, dirnames, filenames) in walk(mypath): print(filenames) txt_name_list.extend(filenames) break print(txt_name_list) """ Process """ for txt_name in txt_name_list: # txt_file = open("Labels/stop_sign/001.txt"
git @tips
14 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-
proxmox @tips
13 Hits, Last modified: 8 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
esphome @projects:internetofthings
13 Hits, Last modified: 5 years ago
KEN=... PAYLOAD="{\"directive\": {\"header\": {\"namespace\": \"Alexa.Discovery\", \"name\": \"Discover\", \"payloadVersion\": \"3\", \"messageId\": \"8db404... { "supported": [ { "name": "connectivity" } ], "... { "supported": [ { "name": "connectivity" } ], "
loadbalancing @kubernetes
12 Hits, Last modified: 13 months ago
ive.yaml </code> Adesso che è installato nel suo namespace: <code> ubuntu@kubectl:~$ kubectl get all -n metallb-system NAME READY STATUS RE... 1/1 Running 0 145m NAME TYPE CLUSTER-... P 10.105.26.211 <none> 443/TCP 145m NAME DESIRED CURRENT READY U
vscode @projects:zibaldone
12 Hits, Last modified: 3 months ago
", "configurations": [ { "name": "Python: Attach", "type": "python",... .dev extension <code | ~/.continue/config.yaml> name: Local Assistant version: 1.0.0 schema: v1 models: - name: Qwen3-coder provider: ollama apiBase: ht... - apply - autocomplete - chat - name: Nomic Embed provider: ollama apiBase: ht
ansible @tips
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
syntax @wiki
9 Hits, Last modified: 5 years ago
l characters are not allowed. You can use [[some:namespaces]] by using a colon in the pagename. You can use [[some:namespaces]] by using a colon in the pagename. For details about namespaces see [[doku>namespaces]]. Linking to a specific section is possible, too. Just add the section na
docker @projects:zibaldone:linux
9 Hits, Last modified: 3 years ago
OMMAND CREATED STATUS PORTS NAMES 3fdbad8aa816 alpine "sh" 4 minutes ago... om image sslvpn-plus-leonardo <code> docker run --name vpn-leonardo --cap-add=NET_ADMIN --device=/dev/ne... ename volume ===== <code> docker volume create --name <new_volume> docker run --rm -it -v <old_volume>:... reate a docker builder or use existing one <code> NAME=builder1 docker buildx use $NAME || docker buildx
homeassistant @projects:internetofthings
8 Hits, Last modified: 4 years ago
ostato [[reference|<Product type="0201" id="0501" name="TZ10.XX Wall Thermostat" config="wenzhou/tz10.xm... acturer_specific.xml near <Manufacturer id="0118" name="Wenzhou TKB Control System"> <code> <Product type="0201" id="0501" name="TZ10.XX Wall Thermostat" config="wenzhou/tz10.xm... homeassistant> server { listen 80; server_name "scipio.csgalileo.org"; # create this fold
ceph-on-k0s @tips
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
ssl @tips
7 Hits, Last modified: 5 weeks ago
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... site.conf> server { listen 80; server_name "mail.csgalileo.org"; # create this folde
googlehome @projects:internetofthings
7 Hits, Last modified: 8 years ago
iotaiuto_skill @projects:internetofthings
7 Hits, Last modified: 5 years ago
video @tips
6 Hits, Last modified: 5 years ago
doorbell @projects:iotaiuto
6 Hits, Last modified: 4 years ago
networknamespaces @tips:linux
6 Hits, Last modified: 7 years ago
dns @tips
5 Hits, Last modified: 4 years ago
jibri @tips
5 Hits, Last modified: 3 years ago
zfs @tips
5 Hits, Last modified: 3 years ago
totem @projects:iotaiuto
5 Hits, Last modified: 4 years ago
fail2ban @tips
4 Hits, Last modified: 7 years ago
telegram @tips
4 Hits, Last modified: 4 years ago
install @tips:archlinux
4 Hits, Last modified: 3 years ago
traefik @kubernetes
3 Hits, Last modified: 13 months ago
mdm @projects
3 Hits, Last modified: 4 years ago
airos @tips
3 Hits, Last modified: 7 years ago
brainstorming @tips
3 Hits, Last modified: 4 years ago
helm @tips
3 Hits, Last modified: 14 months ago
ionic @tips
3 Hits, Last modified: 9 years ago
jupyterhub @tips
3 Hits, Last modified: 5 years ago
keras @tips
3 Hits, Last modified: 6 years ago
pcb @tips
3 Hits, Last modified: 5 years ago
influxdb @projects:internetofthings
3 Hits, Last modified: 6 years ago
iotaiuto @projects:internetofthings
3 Hits, Last modified: 5 years ago
presence @projects:iotaiuto
3 Hits, Last modified: 4 years ago
image-build @projects:livenet
3 Hits, Last modified: 8 years ago
server @projects:livenet
3 Hits, Last modified: 8 years ago
virtualization @projects:livenet
3 Hits, Last modified: 6 years ago
postgres @tips:db
3 Hits, Last modified: 7 years ago
turbolevo @projects:zibaldone:electronic
3 Hits, Last modified: 4 years ago
3dprinter @projects
2 Hits, Last modified: 4 years ago
cordova @tips
2 Hits, Last modified: 11 years ago
k80 @tips
2 Hits, Last modified: 17 months ago
overpass @tips
2 Hits, Last modified: 5 years ago
pulsar @tips
2 Hits, Last modified: 6 years ago
tmux @tips
2 Hits, Last modified: 9 years ago
analisi @projects:charta
2 Hits, Last modified: 3 years ago
graphite @projects:internetofthings
2 Hits, Last modified: 8 years ago
jetsonnano @projects:internetofthings
2 Hits, Last modified: 2 years ago
scipiodev @projects:livenet
2 Hits, Last modified: 8 years ago
docs @projects:wamp
2 Hits, Last modified: 9 years ago
redis @tips:db
2 Hits, Last modified: 8 years ago
systemd @zibaldone:linux
2 Hits, Last modified: 19 months ago
playground @playground
1 Hits, Last modified: 3 years ago
atom @tips
1 Hits, Last modified: 8 years ago
gnss @tips
1 Hits, Last modified: 3 years ago
k0s @tips
1 Hits, Last modified: 14 months ago
openspec @tips
1 Hits, Last modified: 6 weeks ago
windows10 @tips
1 Hits, Last modified: 7 years ago
zabbix @tips
1 Hits, Last modified: 4 years ago
mev2 @projects:giano
1 Hits, Last modified: 3 years ago
orangepizero2 @projects:internetofthings
1 Hits, Last modified: 14 months ago
galileo @projects:iotaiuto
1 Hits, Last modified: 3 years ago
python @projects:zibaldone
1 Hits, Last modified: 3 years ago
adb @tips:android
1 Hits, Last modified: 8 years ago
bootanimation @tips:android
1 Hits, Last modified: 11 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
gpio @tips:radxa
1 Hits, Last modified: 11 years ago
linux @tips:radxa
1 Hits, Last modified: 10 years ago
xenial @tips:ubuntu
1 Hits, Last modified: 9 years ago
pptp @tips:vpn
1 Hits, Last modified: 9 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