d0wn.com rapport :   Visitez le site


  • Titre:d0wn – linux , sbc's , bash scripting

    La description :skip to content toggle navigation d0wn linux orange pi php/wordpress bash – loop over the contents of a file line by line 20 june 2018 20 june 2018 fabien bash , linux leave a comment if you need to i...

    Classement Alexa Global: # 3,010,161

    Server:Apache/2.4.7 (Ubuntu...
    X-Powered-By:PHP/5.5.9-1ubuntu4.25

    L'adresse IP principale: 46.105.18.82,Votre serveur France,Roubaix ISP:OVH SAS  TLD:com Code postal:fr

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

Created Date:2003-02-08
Changed Date:2016-12-29

Données techniques du d0wn.com


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 d0wn.com.Actuellement, hébergé dans France et son fournisseur de services est OVH SAS .

Latitude: 50.69421005249
Longitude: 3.1745600700378
Pays: France (fr)
Ville: Roubaix
Région: Nord-Pas-de-Calais
ISP: OVH SAS

the related websites

domaine Titre
d0wn.com d0wn – linux , sbc's , bash scripting
t-scripts.com t scripts - custom perl and php cgi scripting and programming
delahaye.fr blog thomas delahaye | technologies microsoft et vmware, scripting powershell, a

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é Apache/2.4.7 (Ubuntu) contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.

Content-Length:13815
X-Powered-By:PHP/5.5.9-1ubuntu4.25
Content-Encoding:gzip
Vary:Accept-Encoding
Keep-Alive:timeout=5, max=100
Server:Apache/2.4.7 (Ubuntu)
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Date:Sat, 21 Jul 2018 12:35:59 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:dns12.ovh.net. tech.ovh.net. 2017090500 86400 3600 3600000 86400
ns:dns12.ovh.net.
ns12.ovh.net.
ipv4:IP:46.105.18.82
ASN:16276
OWNER:OVH, FR
Country:FR
mx:MX preference = 1, mail exchanger = mx1.ovh.net.
MX preference = 5, mail exchanger = mx2.ovh.net.
MX preference = 100, mail exchanger = mxb.ovh.net.

HtmlToText

skip to content toggle navigation d0wn linux orange pi php/wordpress bash – loop over the contents of a file line by line 20 june 2018 20 june 2018 fabien bash , linux leave a comment if you need to iterate over the content of a file line by line you can use this little bash trick. while read -r line; do printf '%s\n' "$line" done < "file.txt" in this case , it will simply print the line, but if you need to do an operation on the text , just insert your code into the while loop. bash , while how to update grafana from version 4 to version 5 22 april 2018 22 april 2018 fabien linux leave a comment grafana is a wonderful tool to display time series ans a lot of different metrics the project is in a very active development state , and new features are added constantly. the version 5 is particularly desirable since a new layout engine for the dashboard has been developed, and is quite powerfull ! so to update your install of grafana from 4 to 5 you need to launch several command with root or a privileged user. #optional step : save the grafana config cp /var/lib/grafana/grafana.db /tmp/grafana.db.save #then dowload the instalation package wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana_5.0.4_amd64.deb #then stop the grafana server service grafana-server stop #then install the package (sudo it if necessary) dpkg -i grafana_5.0.4_amd64.deb the service should automaticly restart when the update is done , but check that it is running with : service grafana-server status you should see something like this ? grafana-server.service – grafana instance loaded: loaded (/usr/lib/systemd/system/grafana-server.service; disabled) active: active (running) since ven. 2018-04-20 17:47:41 cest; 1 day 22h ago grafana , linux , update use the keyboard on a remote machine over ssh? 22 april 2018 22 april 2018 fabien bash , linux leave a comment if you use a linux box to display some infos in a public space , you might not have the possibility to connect a mouse and keyboard every time you need to click on the page. for example, at work we use a tv to display some metrics with grafana , sometime, when we reboot the machine , the identification cookie will be outdated and the browser will land on the authentication page instead. since the machine has no keyboard and mousse attached this cause some issues , . so i’ve used the tool xdotool that allow a privileged ssh user or a script to interact with the mouse and keyboard an important step is to select the screen on witch you want to send mouses clicks and keystrokes. export display=:0 after that lets say your screen is displaying a full-screen browser with a login page , by default the cursor is already in the login form. for the example , the login/password are going to be admin/admin #for typing the login xdotool key a && xdotool key d && xdotool key m && xdotool key i && xdotool key n #to advance to the password form xdotool key tab #for typing admin again in the password prompt. xdotool key a && xdotool key d && xdotool key m && xdotool key i && xdotool key n #then tab gain to go the login button , and push enter to send the form xdotool key tab && xdotool key kp_enter you are now logged and you dashboard will display linux , press keyboard , ssh bash keyboard shortcuts 15 february 2018 15 february 2018 fabien bash , linux leave a comment when you are spending your day in the terminal , you will find that navigating using only the arrows keys although fine at the the start will frustrate you because it’s quite slow. bash come with a lot of keyboard shortcuts design to gain precious time. ctrl+a # will move the cursour to the beginning of the line ctrl+e # moves to end of line ctrl+c # halts the current command and back to prompt ctrl+d # deletes one character backward or logs out of current session, similar to exit ctrl+k # deletes all the text forward to the end of the line ctrl+l # clears screen and redisplay the line ctrl+r # searches history entering keyword , ctrl+t # transposes two characters ctrl+u # kills backward from point to the beginning of line ctrl+w # kills the word behind the cursor i’ve put in bold the shortcuts that i use every day , i don’t use ctrl+a and ctrl+e because the keyboard has keys that are foing the same thing. bash , keyboard shortcuts bash brace expansion. (to delete files) 3 february 2018 fabien bash , linux leave a comment in bash , it is common to have to do some action on a numéric serie of files , like deleting or renaming , using brace expansion you will be able to générate a single line that will act on multiple targets , for our example , let’s think about a list of ten files log1.log log2.log log3.log log4.log log5.log log6.log log7.log log8.log log9.log log10.log in the simple case where i want to delete the complete list of files, i just have to run de command, rm log*.log the 10 files will be deleted, but , this is not practical if you want to keep the last file , and delete the other nine, in that case we can use a usefull tool called brace expansion, to delete the files 1 to 9 , i just have to run in my bash terminal! rm log{1..9}.log this last one is extremely practical , i use it very often in a lot of different uses cases. but in other cases , you may want to delete even on odd files , or one every three files, this is also doable with braces expansions rm log{1..10..2} .log #to delete 1 3 5 7 9 rm log{1..10..3}.log #to delete 1 4 7 10 bash , brace expansion , linux redirect stdout and stderr to a file 22 november 2017 22 november 2017 fabien bash leave a comment il you need to run a script unattended and wish to log the output of that script you must already know that you can simply do ./myscript.sh > mylog.log the problem with that is you will not log the error messages , only the output messages , the error are going to be displayed on the terminal but , not logged and the error message are often as important as the output message , we do not want to dismiss them from the log , the solution to that issue is to run the script using this ./myscript.sh > mylog.log 2>&1 with this , both the output will be logged in to the log file. bash , redirection , stderr , stdin orange pi zero – the battle against heat 25 august 2017 29 august 2017 fabien linux , orange pi 3 comments as you know if you own the orange pi zero, the board run very hot. running it without an heat sink is not really possible if your board is doing anything other than idling and even with an heatsink you will encounter throttling if your application is a little intensive. in an other article i managed to get a fan running controlled by the gpio’s. a cron check every minute the cpu temperature, if it’s above a set temperature, the fan turn on. on this photo you can see the npn transistor fixed to the fan if it’s under, the fan turns off. the first time i did that project it was on my first orange pi zero. i made some mistakes in my wiring and, because of that, the fan only received 2.5v, it was spinning very slowly, and i was obliged to do some bash trickery to get the fan to start. my original orangepi zero was lost during an apartment change. i decided to order a new one and this time, i wanted to do the best work i could to integrate the fan and heatsink. i found an acrylic case for the orange pi zero on aliexpress. and after receiving my orange pi zero, i saw the board was a new revision, it was running even hotter than my previous orange pi zero. few days after receiving the board, the case arrived. it was very pretty but it was blocking any air circulation. and the heatsink had no medium to dissipate the heat since the air was hot and not circulating around the metal. the cpu temperature rapidly ascended to 80°c. i own several old fans disassembled from old graphics card, and one of the small fans was just the perfect size. i cut a circular hole in the top acrylic plate so the air from the fa

Analyse PopURL pour d0wn.com


http://www.d0wn.com/tag/chien/
http://www.d0wn.com/author/admin/
http://www.d0wn.com/page/2/
http://www.d0wn.com/tag/art/
http://www.d0wn.com/tag/orange-pi/
http://www.d0wn.com/category/phpwordpress/
http://www.d0wn.com/use-the-keyboard-on-a-remote-machine-over-ssh/#respond
http://www.d0wn.com/tag/requin/
http://www.d0wn.com/#content
http://www.d0wn.com/influxdb-insert-multiple-values-at-once-using-curl/
http://www.d0wn.com/tag/fail/
http://www.d0wn.com/tag/glace/
http://www.d0wn.com/tag/animal/
http://www.d0wn.com/tag/ours/
http://www.d0wn.com/category/linux/orange-pi/

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: D0WN.COM
Registry Domain ID: 94787775_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.ovh.com
Registrar URL: http://www.ovh.com
Updated Date: 2016-12-29T18:08:20Z
Creation Date: 2003-02-08T21:09:42Z
Registry Expiry Date: 2018-02-08T21:09:42Z
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: DNS12.OVH.NET
Name Server: NS12.OVH.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-08-16T02:46:00Z <<<

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 com.whois-servers.net

  ARGS domain =d0wn.com

  PORT 43

  TYPE domain
RegrInfo
DOMAIN

  NAME d0wn.com

  CHANGED 2016-12-29

  CREATED 2003-02-08

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

NSERVER

  DNS12.OVH.NET 213.251.188.131

  NS12.OVH.NET 213.251.128.131

  REGISTERED yes

Go to top

Erreurs


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

  • www.ud0wn.com
  • www.7d0wn.com
  • www.hd0wn.com
  • www.kd0wn.com
  • www.jd0wn.com
  • www.id0wn.com
  • www.8d0wn.com
  • www.yd0wn.com
  • www.d0wnebc.com
  • www.d0wnebc.com
  • www.d0wn3bc.com
  • www.d0wnwbc.com
  • www.d0wnsbc.com
  • www.d0wn#bc.com
  • www.d0wndbc.com
  • www.d0wnfbc.com
  • www.d0wn&bc.com
  • www.d0wnrbc.com
  • www.urlw4ebc.com
  • www.d0wn4bc.com
  • www.d0wnc.com
  • www.d0wnbc.com
  • www.d0wnvc.com
  • www.d0wnvbc.com
  • www.d0wnvc.com
  • www.d0wn c.com
  • www.d0wn bc.com
  • www.d0wn c.com
  • www.d0wngc.com
  • www.d0wngbc.com
  • www.d0wngc.com
  • www.d0wnjc.com
  • www.d0wnjbc.com
  • www.d0wnjc.com
  • www.d0wnnc.com
  • www.d0wnnbc.com
  • www.d0wnnc.com
  • www.d0wnhc.com
  • www.d0wnhbc.com
  • www.d0wnhc.com
  • www.d0wn.com
  • www.d0wnc.com
  • www.d0wnx.com
  • www.d0wnxc.com
  • www.d0wnx.com
  • www.d0wnf.com
  • www.d0wnfc.com
  • www.d0wnf.com
  • www.d0wnv.com
  • www.d0wnvc.com
  • www.d0wnv.com
  • www.d0wnd.com
  • www.d0wndc.com
  • www.d0wnd.com
  • www.d0wncb.com
  • www.d0wncom
  • www.d0wn..com
  • www.d0wn/com
  • www.d0wn/.com
  • www.d0wn./com
  • www.d0wnncom
  • www.d0wnn.com
  • www.d0wn.ncom
  • www.d0wn;com
  • www.d0wn;.com
  • www.d0wn.;com
  • www.d0wnlcom
  • www.d0wnl.com
  • www.d0wn.lcom
  • www.d0wn com
  • www.d0wn .com
  • www.d0wn. com
  • www.d0wn,com
  • www.d0wn,.com
  • www.d0wn.,com
  • www.d0wnmcom
  • www.d0wnm.com
  • www.d0wn.mcom
  • www.d0wn.ccom
  • www.d0wn.om
  • www.d0wn.ccom
  • www.d0wn.xom
  • www.d0wn.xcom
  • www.d0wn.cxom
  • www.d0wn.fom
  • www.d0wn.fcom
  • www.d0wn.cfom
  • www.d0wn.vom
  • www.d0wn.vcom
  • www.d0wn.cvom
  • www.d0wn.dom
  • www.d0wn.dcom
  • www.d0wn.cdom
  • www.d0wnc.om
  • www.d0wn.cm
  • www.d0wn.coom
  • www.d0wn.cpm
  • www.d0wn.cpom
  • www.d0wn.copm
  • www.d0wn.cim
  • www.d0wn.ciom
  • www.d0wn.coim
  • www.d0wn.ckm
  • www.d0wn.ckom
  • www.d0wn.cokm
  • www.d0wn.clm
  • www.d0wn.clom
  • www.d0wn.colm
  • www.d0wn.c0m
  • www.d0wn.c0om
  • www.d0wn.co0m
  • www.d0wn.c:m
  • www.d0wn.c:om
  • www.d0wn.co:m
  • www.d0wn.c9m
  • www.d0wn.c9om
  • www.d0wn.co9m
  • www.d0wn.ocm
  • www.d0wn.co
  • d0wn.comm
  • www.d0wn.con
  • www.d0wn.conm
  • d0wn.comn
  • www.d0wn.col
  • www.d0wn.colm
  • d0wn.coml
  • www.d0wn.co
  • www.d0wn.co m
  • d0wn.com
  • www.d0wn.cok
  • www.d0wn.cokm
  • d0wn.comk
  • www.d0wn.co,
  • www.d0wn.co,m
  • d0wn.com,
  • www.d0wn.coj
  • www.d0wn.cojm
  • d0wn.comj
  • www.d0wn.cmo
 Afficher toutes les erreurs  Cacher toutes les erreurs