HtmlToText
search: menu search: -- is ovh blocking port 445 ? 2015-11-04 22:59 many users reported me that port 445 is blocked on portquiz.net. sorry about that : my hosting company, ovh, is probably blocking this port. i opened a support ticket but got a response stating that no port is blocked. i opened a thread on ovh forum (french). feel free to post your tcptraceroute, or contact ovh. 2015-11-04 22:59 portquiz.net : how it works 2015-10-27 20:11 i’ve been asked a few time how portquiz.net works. it’s really simple. it’s just made of a few iptables rules. i’m using the iptables-persistent debian package to make the rules persist a reboot. here is the content of /etc/iptables/rules.v4 : # generated by iptables-save v1.4.14 on sun aug 25 12:43:34 2013 *nat :prerouting accept [0:0] :postrouting accept [0:0] :output accept [0:0] -a prerouting -i lo -j return -a prerouting -p icmp -j return -a prerouting -m state --state related,established -j return -a prerouting -p tcp -m tcp --dport 22 -j return -a prerouting -p tcp -m tcp --dport 21 -j return -a prerouting -p tcp -m tcp --dport 25 -j return -a prerouting -p tcp -m tcp --dport 80 -j return -a prerouting -p tcp -m tcp --dport 443 -j return -a prerouting -p tcp -j dnat --to-destination :80 commit # completed on sun aug 25 12:43:34 2013 # generated by iptables-save v1.4.14 on sun aug 25 12:43:34 2013 *filter :input accept [0:0] :forward accept [0:0] :output accept [0:0] -a input -p icmp -j accept -a input -i lo -j accept -a input -m state --state related,established -j accept -a input -p tcp -m state --state new -m tcp --dport 22 -j accept -a input -p tcp -m state --state new -m tcp --dport 21 -j accept -a input -p tcp -m state --state new -m tcp --dport 25 -j accept -a input -p tcp -m state --state new -m tcp --dport 80 -j accept -a input -p tcp -m state --state new -m tcp --dport 443 -j accept -a input -j drop commit # completed on sun aug 25 12:43:34 2013 the filter table is classical: accept a few services, then drop the rest. portquiz.net logic is in the nat table: forward connection on any port to port 80 (dnat –to-destination :80) except for normal services (just return for normal activity) 2015-10-27 20:11 nautilus script to search opensubtitles.org 2014-08-31 11:55 mathilde’s contribution: this script allows you to launch a search by filesize on opensubtitles.org , with a simple right-click on a video file. if it does not exist, create the .local/share/nautilus/scripts directory in your personnal folder (from nautilus, you can use the ctrl+h shortcut to display hidden files and be able to see the .local directory). save the subtitle file in .local/share/nautilus/scripts add execution permission to the script, in file properties, or running the command chmod +x ~/.local/share/nautilus/scripts/subtitle open nautilus (aka “files”). select the film you want to search subtitles for, right-click > scripts > subtitle. a browser window will open directly on opensubtitles.org with your search results. nb: by default, the script will search subtitles in english. to change the language, open the script and change the lang variable. content of subtitle script: #!/bin/bash lang=eng #lang=fr file=$1 size=$(stat -c %s $file) xdg-open "http://www.opensubtitles.org/eng/search/sublanguageid-$lang/moviebytesize-$size" 2014-08-31 11:55 · tags: bash , nautilus mpd clients for adafruit character lcd keypad on raspberry pi 2014-07-09 23:10 i just pushed some small python music player daemon clients on github. it may be of use for mpd fans using the device! https://github.com/dooblem/adampd 2014-07-09 23:10 · tags: github , mpd , raspberry pi lenovo thinkpad bios update with linux and usb 2014-05-29 18:59 here are the steps i used to upgrade the bios of my lenovo thinkpad x1 carbon gen 2. you have to download the bootable iso file from lenovo support site, convert it and copy it to a usb flash drive. you will need a usb key you can erase. first get the bootable iso file from lenovo support website. to get your product number: sudo dmidecode -t system | grep product to check your bios version: sudo dmidecode -t bios get the geteltorito program from your packages or download it: cd /tmp/ wget http://userpages.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/geteltorito chmod +x geteltorito extract the img from the iso: ./geteltorito -o bios.img gruj09us.iso copy the img to the usb key ( make sure sdb is you usb key!! ): sudo fdisk -l /dev/sdb #at least check that device size is right sudo dd if=bios.img of=/dev/sdb that’s it. boot on usb stick and follow the instructions to update your bios. 2014-05-29 18:59 · tags: arch linux , bios , linux , thinkpad , ubuntu , usb disable ssh askpass in git push 2014-04-27 14:24 if you have the problem when pushing to github for example. you can just empty the core.askpass param: git config --global core.askpass '' see also man git config 2014-04-27 14:24 · tags: git , github , ssh clone a linux system install to another computer 2014-04-06 17:54 after searching a bit i could not find a simple and good howto to do that. the following method should work for any linux distribution (ubuntu, debian, manjaro, archlinux, fedora…). source and target systems must be on the same processor architecture (though transfer from 32bit to 64bit should work). what you need: 2 live usb keys (or cds) to speed up data transfer: good quality ethernet cables (one cable between the 2 computers is ok), or a usb key/drive with a big ext4 partition. you can try over wifi, but it may be slow. 1. boot source and target machines on live usb/cd any live usb/cd should be ok. on the target computer, you will need a tool to partition your hard drive, like gparted . rsync is also required for data transfer: it’s included in many live systems. ubuntu live cd is ok, manjaro live cd too. 2. partition your target hard drive use a tool like gparted to partition the target hard drive, with the same partitions as your source system (slash, swap, home…). i recommend you to assign labels to your partitions: for the fstab, it’s easier than uuids. 3. mount all partitions on both machines on both systems, open a root terminal. then, for each data partition (you can ignore swap): mkdir /mnt/slash mount /dev/sdax /mnt/slash if you have a home partition: mkdir /mnt/home mount /dev/sday /mnt/home 4. transfer the data (network or usb) this part may be tricky. choose the method you prefer. network setup the network. test the connectivity with ping command. the easier is to plug the pcs on a dhcp network (like your isp box) so that you get automatic ip addresses. if you linked the 2 pcs with a single cable, you’ll have to setup the ips with networkmanager (static ips, or adhoc network). on source system, as root, create a simple /etc/rsyncd.conf file: uid = root gid = root use chroot = no [all] path = / then start the rsync daemon server: rsync --daemon on target pc, for each partition: rsync -avhx source_ip::all/mnt/slash/ /mnt/slash/ don’t forget ‘/’ at the end of paths. -a will preserve many file attributes like owner and permissions, -h will preserve hardlinks if any, -x will preserve extended attributes like setuid. you may also add -a if you are using acls. what is good with rsync is that you can stop and restart the transfer whenever you want. usb prepare a usb drive with a big ext4 partition. mount the usb partition on source system ( mount /dev/sdbx /mnt/usb ) for each partition: rsync -avhx /mnt/slash/ /mnt/usb/slash/ umount, unplug and remount the usb disk on the target system. for each partition: rsync -avhx /mnt/usb/slash/ /mnt/slash/ 5. change fstab on target system as root, edit /mnt/slash/etc/fstab for each partition (including swap), replace the first field with the new uuid or label (it’s straightforward with labels): uuid=the-long-uuid , or label=yourlabel 2 ways to get the uuids / labels: ls -l /dev/disk/by-uuid/ blkid /dev/sdax 6. reinstall grub we will use a chroot (changed root environment) to be able to call the gr
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: POSITON.ORG
Registry Domain ID: D107615252-LROR
Registrar WHOIS Server:
Registrar URL: http://www.gandi.net
Updated Date: 2016-08-28T08:29:09Z
Creation Date: 2005-09-26T18:00:04Z
Registry Expiry Date: 2018-09-26T18:00:04Z
Registrar Registration Expiration Date:
Registrar: Gandi SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Reseller:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: C16070825-LROR
Registrant Name: Marc MAURICE
Registrant Organization: Marc MAURICE
Registrant Street: Obfuscated whois Gandi-63-65 boulevard Massena
Registrant Street: Gandi, 63-65 boulevard Massena
Registrant City: Obfuscated whois Gandi-Paris
Registrant State/Province: Paris
Registrant Postal Code: 75013
Registrant Country: FR
Registrant Phone: +33.170377666
Registrant Phone Ext:
Registrant Fax: +33.143730576
Registrant Fax Ext:
Registrant Email: bbf10516a7db41bb468d91e6810aa262-364495@contact.gandi.net
Registry Admin ID: C16070824-LROR
Admin Name: Marc MAURICE
Admin Organization:
Admin Street: Obfuscated whois Gandi-63-65 boulevard Massena
Admin Street: Gandi, 63-65 boulevard Massena
Admin City: Obfuscated whois Gandi-Paris
Admin State/Province: Paris
Admin Postal Code: 75013
Admin Country: FR
Admin Phone: +33.170377666
Admin Phone Ext:
Admin Fax: +33.143730576
Admin Fax Ext:
Admin Email: bbf10516a7db41bb468d91e6810aa262-364495@contact.gandi.net
Registry Tech ID: C6122580-LROR
Tech Name: Service Technique
Tech Organization: GANDI SARL
Tech Street: 63 - 65 Boulevard Massena
Tech City: Paris
Tech State/Province:
Tech Postal Code: 75013
Tech Country: FR
Tech Phone: +33.143737851
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: support@gandi.net
Name Server: C.DNS.GANDI.NET
Name Server: B.DNS.GANDI.NET
Name Server: A.DNS.GANDI.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2017-07-17T04:34:38Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
Access to Public Interest Registry WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Public Interest Registry registry database. The data in this record is provided by Public Interest Registry for informational purposes only, and Public Interest Registry does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to: (a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Afilias except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Public Interest Registry reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.
REFERRER http://www.pir.org/
REGISTRAR Public Interest Registry
SERVERS
SERVER org.whois-servers.net
ARGS positon.org
PORT 43
TYPE domain
RegrInfo
DOMAIN
NAME positon.org
HANDLE D107615252-LROR
CREATED 2005-09-26
STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
NSERVER
C.DNS.GANDI.NET 217.70.179.1
B.DNS.GANDI.NET 213.167.229.1
A.DNS.GANDI.NET 173.246.98.1
OWNER
HANDLE C16070825-LROR
NAME Marc MAURICE
ORGANIZATION Marc MAURICE
ADDRESS
STREET
Obfuscated whois Gandi-63-65 boulevard Massena
Gandi, 63-65 boulevard Massena
CITY Obfuscated whois Gandi-Paris
STATE Paris
PCODE 75013
COUNTRY FR
PHONE +33.170377666
EMAIL bbf10516a7db41bb468d91e6810aa262-364495@contact.gandi.net
ADMIN
HANDLE C16070824-LROR
NAME Marc MAURICE
ADDRESS
STREET
Obfuscated whois Gandi-63-65 boulevard Massena
Gandi, 63-65 boulevard Massena
CITY Obfuscated whois Gandi-Paris
STATE Paris
PCODE 75013
COUNTRY FR
PHONE +33.170377666
EMAIL bbf10516a7db41bb468d91e6810aa262-364495@contact.gandi.net
TECH
HANDLE C6122580-LROR
NAME Service Technique
ORGANIZATION GANDI SARL
ADDRESS
STREET
63 - 65 Boulevard Massena
CITY Paris
PCODE 75013
COUNTRY FR
PHONE +33.143737851
EMAIL support@gandi.net
REGISTERED yes
Go to top