zewaren.net rapport :   Visitez le site


  • Titre:zewaren.net | the personal website of erwan martin

    La description :skip to main content zewaren.net main menu about me not so frequently asked questions and stuff files pxe articles en français main menu about me not so frequently asked questions and stuff electronic...

    Server:nginx...
    X-Powered-By:PHP/5.6.30

    L'adresse IP principale: 93.174.33.76,Votre serveur France,Montreuil ISP:Saveho SARL  TLD:net Code postal:fr

    Ce rapport est mis à jour en 28-Jul-2018

Created Date:2005-08-22
Changed Date:2017-07-24

Données techniques du zewaren.net


Geo IP vous fournit comme la latitude, la longitude et l'ISP (Internet Service Provider) etc. informations. Notre service GeoIP a trouvé l'hôte zewaren.net.Actuellement, hébergé dans France et son fournisseur de services est Saveho SARL .

Latitude: 50.46667098999
Longitude: 1.7666699886322
Pays: France (fr)
Ville: Montreuil
Région: Nord-Pas-de-Calais
ISP: Saveho SARL

the related websites

domaine Titre
zewaren.net zewaren.net | the personal website of erwan martin
lesgentilspariziens.fr personal shopping paris, agence les gentils pariziens. personal shopper
parisian-style.fr personal shopper paris monaco marseille | agence personal shopping
fitlegz.ca Personal Trainer Ottawa AP Fitness Personal Training Studio
erwan-lecornec-avocat.fr accueil | erwan le cornec
erwand.fr erwan dagorn développeur web vannes lorient
erwantanguy.fr erwan tanguy un site utilisant wordpress
jacques-erwan.fr l'écumeur de mémoire | les archives de jacques erwan
erwanboulloud.fr collection | erwan boulloud | designer • sculpteur
cabinet-cougoulat.fr cabinet de me erwan cougoulat, avocat au barreau de rennes
xionghuilin.com xiong hui lin's personal page – scruffybear wordpress personal page
loan-payday-personal.net loan-payday-personal.net - dewapokerloan-payday-personal.net – dewapoker
pagelaw.com st. louis personal injury lawyers | personal injury attorneys mo
gaschignard-heric.notaires.fr notaire à heric (44), office notarial de gaschignard patrick et erwan
ryanfearnpt.com ryan fearn | personal trainer | canterbury - ryan fearn | personal training | ca

Analyse d'en-tête HTTP


Les informations d'en-tête HTTP font partie du protocole HTTP que le navigateur d'un utilisateur envoie à appelé nginx contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.

Content-Length:99354
Content-Language:en
X-Content-Type-Options:nosniff
X-Powered-By:PHP/5.6.30
Expires:Sun, 19 Nov 1978 05:00:00 GMT
Server:nginx
Connection:keep-alive
Cache-Control:no-cache, must-revalidate
Date:Sat, 28 Jul 2018 12:40:05 GMT
X-Frame-Options:SAMEORIGIN
Content-Type:text/html; charset=utf-8
X-Generator:Drupal 7 (http://drupal.org)

DNS

soa:dns.ovh.net. tech.ovh.net. 2016071403 86400 3600 3600000 86400
txt:"v=spf1 mx ~all"
ns:dns.ovh.net.
ns.ovh.net.
ipv4:IP:93.174.33.76
ASN:34704
OWNER:SAVEHO, FR
Country:FR
mx:MX preference = 1, mail exchanger = mail1.enceinte.tf.

HtmlToText

skip to main content zewaren.net main menu about me not so frequently asked questions and stuff files pxe articles en français main menu about me not so frequently asked questions and stuff electronics and embedded systems (6) freebsd and linux (69) samba (6) miscelaneous (8) programming (47) windows (23) remote desktop (3) files software profiles (2) pxe hardware related tools (4) operating system installers (3) utilities (4) articles en français articles en français (6) welcome to zewaren.net. this site presents myself and mostly archives the solutions to some problems i once had. build your own freebsd ports and make packages out of them using jails, poudriere and portshaker sun, 2017-12-10 00:09 — zewaren situation you make custom ports of your applications. you would like to use pkg to install them on your production and development machines. solution build a poudriere server with portshaker! requirements: custom ports come in the form of a git port tree everything should run in a jail. git has many dependencies you don't want on your host systems (i'm looking a you bash). everything should use zfs as much as possible setting up the base system make sure the following kernel modules are loaded: tmpfs linux linux64 nullfs procfs fdescfsu linprocfs load them now: # kldload tmpfs # kldload linux # kldload linux64 # kldload nullfs # kldload procfs # kldload fdescfsu # kldload linprocfs make sure they're loaded on boot: # sysrc -f /boot/loader.conf tmpfs_load="yes" # sysrc -f /boot/loader.conf linux_load="yes" # sysrc -f /boot/loader.conf nullfs_load="yes" # sysrc -f /boot/loader.conf procfs_load="yes" # sysrc -f /boot/loader.conf fdescfsu_load="yes" # sysrc -f /boot/loader.conf linux64_load="yes" # sysrc -f /boot/loader.conf linprocfs_load="yes" make sure jails can use ipc # sysctl security.jail.sysvipc_allowed=1 # sysrc jail_sysvipc_allow=yes create a zfs dataset for the poudriere system: # zfs create zroot/poudriere create a jail, and make sure the jail is allowed to create build jails and manage its zfs dataset. here the relevant configuration for a ezjail jail: # cat /usr/local/etc/ezjail/poudriere [...] export jail_poudriere_zfs_datasets="zroot/poudriere" export jail_poudriere_parameters="children.max=20 allow.mount allow.mount.tmpfs allow.mount.devfs allow.mount.procfs allow.mount.zfs allow.mount.nullfs allow.mount.linprocfs allow.raw_sockets allow.socket_af allow.sysvipc allow.chflags enforce_statfs=1 ip6=inherit ip4=inherit" setting up poudriere in the jail install poudriere and dialog4ports : # make -c /usr/ports/ports-mgmt/dialog4ports install clean # make -c /usr/ports/ports-mgmt/poudriere install clean set the moundpoint of the zfs dataset: # zfs set mountpoint=/poudriere zroot/poudriere make sure the zfs dataset for the ports and the distfiles exists: # zfs create zroot/poudriere/ports # zfs create zroot/poudriere/ports/distfiles configure poudriere in /usr/local/etc/poudriere.conf : zpool: zroot zrootfs: /poudriere freebsd_host: "ftp.xxx.freebsd.org" distfiles_cache: /usr/local/poudriere/ports/distfiles no_linux: 1 create a port tree, but don't populate it. it will be done by portshaker later: # poudriere ports -c -f -f none -m /usr/local/poudriere/ports/main -p main create a build jail: # poudriere jail -c -j 111x64 -v 11.1-release -a amd64 # poudriere jail -l jailname version arch method timestamp path 111x64 11.1-release amd64 ftp 2017-12-08 14:58:09 /usr/local/poudriere/jails/111x64 hehe, we have a jail in a jail. setting up portshaker we're going to build a port tree consisting of the regular freebsd main one (using portsnap ) merged with our own (using git ). portskaker is an awesome tool. it will merge different port tree, handling conflicts intelligently, and even merging the uids/gids files properly. this example will only build a single port tree, but you can configure as many as you want. install portshaker : # make -c /usr/ports/ports-mgmt/portshaker install clean install git: # make -c /usr/ports/devel/git install clean write /usr/local/etc/portshaker.conf : mirror_base_dir="/var/cache/portshaker" ports_trees="main" main_ports_tree="/usr/local/poudriere/ports/main" main_merge_from="portsnap custom" write the portshaker tree source for portsnap , in /usr/local/etc/portshaker.d/portsnap : #!/bin/sh . /usr/local/share/portshaker/portshaker.subr if [ "$1" != '--' ]; then err 1 "extra arguments" fi shift method="portsnap" run_portshaker_command $* write the portshaker tree source for custom , in /usr/local/etc/portshaker.d/custom : #!/bin/sh . /usr/local/share/portshaker/portshaker.subr if [ "$1" != '--' ]; then err 1 "extra arguments" fi shift method="git" git_clone_uri="git@example.com:somegroup/freebsd-ports.git" git_branch=master run_portshaker_command $* make sure both files are executable. fetch both port trees: # portshaker -u you should see portsnap and a git clone being executed. merge the port trees: # portshaker -m you should have a complete port tree in /usr/local/poudriere/ports/main/ . look for your custom ports and check that they're here. setting up nginx we want to use poudriere's web interface. install nginx: # make -c /usr/ports/www/nginx install clean add a server in /usr/local/etc/nginx/nginx.conf server { listen 80 default; server_name _; root /usr/local/share/poudriere/html; location /data { alias /usr/local/poudriere/data/logs/bulk; autoindex on; } location /packages { root /usr/local/poudriere/data; autoindex on; } } that's it! no cgi, no proxy, no whatever. just plain files to serve. test it all write a list of package into a pkglist file ( /usr/local/etc/poudriere.d/someports-pkglist ): www/nginx sysutils/tmux set the port options: poudriere options -j 111x64 -p main -f /usr/local/etc/poudriere.d/someports-pkglist start the build: # poudriere bulk -j 8 -j 110x64 -p main -f /usr/local/etc/poudriere.d/someports-pkglist -v -v -v [00:00:00] ====>> creating the reference jail... done [00:00:00] ====>> mounting system devices for 111x64-main [00:00:00] ====>> mounting ports/packages/distfiles [00:00:00] ====>> using packages from previously failed build [00:00:00] ====>> mounting packages from: /usr/local/poudriere/data/packages/111x64-main [00:00:00] ====>> copying /var/db/ports from: /usr/local/etc/poudriere.d/111x64-options [00:00:00] ====>> appending to make.conf: /usr/local/etc/poudriere.d/111x64-make.conf /etc/resolv.conf -> /usr/local/poudriere/data/.m/111x64-main/ref/etc/resolv.conf [00:00:00] ====>> starting jail 111x64-main [00:00:00] ====>> logs: /usr/local/poudriere/data/logs/bulk/111x64-main/2017-12-08_16h59m32s [00:00:00] ====>> loading moved [00:00:01] ====>> calculating ports order and dependencies [...] creating repository in /tmp/packages: 100% packing files for repository: 100% [00:16:07] ====>> committing packages to repository [00:16:07] ====>> removing old packages [00:16:07] ====>> built ports: ports-mgmt/pkg devel/automake-wrapper devel/autoconf-wrapper print/indexinfo devel/pkgconf devel/pcre devel/gettext-runtime www/nginx lang/perl5.24 devel/gettext-tools devel/p5-locale-gettext devel/gmake misc/help2man print/texinfo devel/m4 devel/libtool devel/autoconf devel/automake devel/libevent sysutils/tmux [111x64-main] [2017-12-08_16h59m32s] [committing:] queued: 20 built: 20 failed: 0 skipped: 0 ignored: 0 tobuild: 0 time: 00:16:07 [00:16:07] ====>> logs: /usr/local/poudriere/data/logs/bulk/111x64-main/2017-12-08_16h59m32s [00:16:07] ====>> cleaning up [00:16:07] ====>> unmounting file systems connect to the web interface: look at the build lists: look at the build report: use your pkg repository on other systems now that our packages are built, let's use them on other systems: make sure the config directory exists: # mkdir -p /usr/local/etc/pkg/repos write a pkg repository config file in /usr/local/etc/pkg/repos/poudriere.conf : poudriere: { url: "http://pkg.example.com/packages/1

Analyse PopURL pour zewaren.net


http://www.zewaren.net/site/site/taxonomy/term/5/%208
http://www.zewaren.net/site/site/frontpage?page=8
http://www.zewaren.net/site/site/node/171
http://www.zewaren.net/site/site/node/170
http://www.zewaren.net/site/site/node/172
http://www.zewaren.net/site/site/taxonomy/term/16
http://www.zewaren.net/site/site/taxonomy/term/17
http://www.zewaren.net/site/site/taxonomy/term/14
http://www.zewaren.net/site/site/taxonomy/term/15
http://www.zewaren.net/site/site/taxonomy/term/12
http://www.zewaren.net/site/site/taxonomy/term/13
http://www.zewaren.net/site/site/taxonomy/term/4%2b7%2b6%2b8%2b9%2b5
http://www.zewaren.net/site/site/taxonomy/term/13%2b14%2b15
http://www.zewaren.net/site/site/frontpage?page=1
http://www.zewaren.net/site/site/frontpage?page=3
bugs.freebsd.org

Informations Whois


Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;

Domain Name: ZEWAREN.NET
Registry Domain ID: 199570432_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.ovh.com
Registrar URL: http://www.ovh.com
Updated Date: 2017-07-24T17:44:19Z
Creation Date: 2005-08-22T18:15:50Z
Registry Expiry Date: 2018-08-22T18:15:50Z
Registrar: OVH
Registrar IANA ID: 433
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: DNS.OVH.NET
Name Server: NS.OVH.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-07-28T12:39:56Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR OVH

SERVERS

  SERVER net.whois-servers.net

  ARGS domain =zewaren.net

  PORT 43

  TYPE domain
RegrInfo
DOMAIN

  NAME zewaren.net

  CHANGED 2017-07-24

  CREATED 2005-08-22

STATUS
clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  DNS.OVH.NET 213.186.33.102

  NS.OVH.NET 213.251.128.136

  REGISTERED yes

Go to top

Erreurs


La liste suivante vous montre les fautes d'orthographe possibles des internautes pour le site Web recherché.

  • www.uzewaren.com
  • www.7zewaren.com
  • www.hzewaren.com
  • www.kzewaren.com
  • www.jzewaren.com
  • www.izewaren.com
  • www.8zewaren.com
  • www.yzewaren.com
  • www.zewarenebc.com
  • www.zewarenebc.com
  • www.zewaren3bc.com
  • www.zewarenwbc.com
  • www.zewarensbc.com
  • www.zewaren#bc.com
  • www.zewarendbc.com
  • www.zewarenfbc.com
  • www.zewaren&bc.com
  • www.zewarenrbc.com
  • www.urlw4ebc.com
  • www.zewaren4bc.com
  • www.zewarenc.com
  • www.zewarenbc.com
  • www.zewarenvc.com
  • www.zewarenvbc.com
  • www.zewarenvc.com
  • www.zewaren c.com
  • www.zewaren bc.com
  • www.zewaren c.com
  • www.zewarengc.com
  • www.zewarengbc.com
  • www.zewarengc.com
  • www.zewarenjc.com
  • www.zewarenjbc.com
  • www.zewarenjc.com
  • www.zewarennc.com
  • www.zewarennbc.com
  • www.zewarennc.com
  • www.zewarenhc.com
  • www.zewarenhbc.com
  • www.zewarenhc.com
  • www.zewaren.com
  • www.zewarenc.com
  • www.zewarenx.com
  • www.zewarenxc.com
  • www.zewarenx.com
  • www.zewarenf.com
  • www.zewarenfc.com
  • www.zewarenf.com
  • www.zewarenv.com
  • www.zewarenvc.com
  • www.zewarenv.com
  • www.zewarend.com
  • www.zewarendc.com
  • www.zewarend.com
  • www.zewarencb.com
  • www.zewarencom
  • www.zewaren..com
  • www.zewaren/com
  • www.zewaren/.com
  • www.zewaren./com
  • www.zewarenncom
  • www.zewarenn.com
  • www.zewaren.ncom
  • www.zewaren;com
  • www.zewaren;.com
  • www.zewaren.;com
  • www.zewarenlcom
  • www.zewarenl.com
  • www.zewaren.lcom
  • www.zewaren com
  • www.zewaren .com
  • www.zewaren. com
  • www.zewaren,com
  • www.zewaren,.com
  • www.zewaren.,com
  • www.zewarenmcom
  • www.zewarenm.com
  • www.zewaren.mcom
  • www.zewaren.ccom
  • www.zewaren.om
  • www.zewaren.ccom
  • www.zewaren.xom
  • www.zewaren.xcom
  • www.zewaren.cxom
  • www.zewaren.fom
  • www.zewaren.fcom
  • www.zewaren.cfom
  • www.zewaren.vom
  • www.zewaren.vcom
  • www.zewaren.cvom
  • www.zewaren.dom
  • www.zewaren.dcom
  • www.zewaren.cdom
  • www.zewarenc.om
  • www.zewaren.cm
  • www.zewaren.coom
  • www.zewaren.cpm
  • www.zewaren.cpom
  • www.zewaren.copm
  • www.zewaren.cim
  • www.zewaren.ciom
  • www.zewaren.coim
  • www.zewaren.ckm
  • www.zewaren.ckom
  • www.zewaren.cokm
  • www.zewaren.clm
  • www.zewaren.clom
  • www.zewaren.colm
  • www.zewaren.c0m
  • www.zewaren.c0om
  • www.zewaren.co0m
  • www.zewaren.c:m
  • www.zewaren.c:om
  • www.zewaren.co:m
  • www.zewaren.c9m
  • www.zewaren.c9om
  • www.zewaren.co9m
  • www.zewaren.ocm
  • www.zewaren.co
  • zewaren.netm
  • www.zewaren.con
  • www.zewaren.conm
  • zewaren.netn
  • www.zewaren.col
  • www.zewaren.colm
  • zewaren.netl
  • www.zewaren.co
  • www.zewaren.co m
  • zewaren.net
  • www.zewaren.cok
  • www.zewaren.cokm
  • zewaren.netk
  • www.zewaren.co,
  • www.zewaren.co,m
  • zewaren.net,
  • www.zewaren.coj
  • www.zewaren.cojm
  • zewaren.netj
  • www.zewaren.cmo
 Afficher toutes les erreurs  Cacher toutes les erreurs