O Windows está longe de ser um sistema que mereça estar na categorai CIENCIA EXATA , ele tem um humor flexivel, as vezes funciona e as vezes não.
Uma das coisas irritantes é a RESOLUÇÂO DE DEOMINIO DNS, que não tem nada ver com os serviços DNS do Linux que funcionam como um relogio...
No momento que tive este problema vi um babaca falar que BILL GATES contribuiu para informatica e blablabla .. este pessoal que diz isto NÂO SABE NADA ! não sabe que BILL GATES jamais contribuiu para alguma coisa ! tudo que ele fabricou ja existia OU ERA COPIA , a informãtica NÂO DEVE NADA A BILL GATES e teria sido (e seria) melhor sem ele e sem a microsoft produzindo lixo, a única coisa que Bill Gates fez foi enriquecer a si mesmo distribuindo produtos de má qualidade pelo mundo.
Depois desde preambulo ..vamos a uma técnica que deu certo para mim, para o pesadelo WINDOWS leia resolução de dominio DNS (e obedece os IPs DNS).
Basta rodar as 4 linhas:
ipconfig /flushdns
ipconfig /registerdns
ipconfig /release
ipconfig /renew
DorivalacTech
My experiences with tech mad world ...
domingo, 15 de novembro de 2015
sexta-feira, 13 de novembro de 2015
Incluir DNS secundário manualmente no Windows
Tem uma maneira "simples" , e quando coloco em aspas é porque nem sempre funciona, é a velha tecnica de editar o arquivo em c:\windows\system32\drivers\etc\hosts
bastaria abrir uma linha em hots do tipo
192.168.0.30 dominio.com.br
pronto ! estaria tudo bem, bastaria pingar o dominio.com.br e ver a resposta do IP 192.168.0.30, mas nem sempre é bem assim ! e isto nao é estranho nesta jeringonça mal feita que é o Windows, que nunca fica bom ... só arremendam.
Uma técnica que tenho usado é incluir diretamente na interface, e estes são os comandos:
EXIBIR INTERFACES
netsh interface show interface
INCLUIR DNS SECUNDARIO
netsh interface ipv4 add dnsserver "Ethernet" address=192.168.0.133 index=2
APAGAR UM DNS INCLUIDO
netsh interface ip delete dns "Ethernet" 192.168.0.133
Isto funciona muito bem ...pelo menos não vi dar problema, porem se o HOSTS estiver bugado, vai afetar esta inclusa, melhor apagar o arquivo hosts.
quinta-feira, 12 de novembro de 2015
Erro em todo Download
Uma suspresa desagrafavel ao remover o Kaspersky de um PC, é meu AntIVirus preferido, mas me decepcionou no Uninstall.
Simplesmente ele não deixou o POLICY do registro do windows como antes, o policiamento de DOWNLOAD continuava configurado para antivirus, sem antivirus ... e o erro é que todo Download acabava em ERRO !
Fico Imagiando isto em um PC de usuário leigo, teria que pagar "O CARA" para formatar por 50 reais ...
A solução é deixar o POLICIAMENTO DE DOWNLOAD como era antes:
Simplesmente ele não deixou o POLICY do registro do windows como antes, o policiamento de DOWNLOAD continuava configurado para antivirus, sem antivirus ... e o erro é que todo Download acabava em ERRO !
Fico Imagiando isto em um PC de usuário leigo, teria que pagar "O CARA" para formatar por 50 reais ...
A solução é deixar o POLICIAMENTO DE DOWNLOAD como era antes:
O software antivírus falhou inesperadamente ao verificar este arquivo
Este tutorial ensina "facinho facinho" como consertar o erro do DOWNLOAD que não finaliza direitinho.
Que falha nheim Karspersky ...
segunda-feira, 21 de outubro de 2013
Motorola line, MIP sel 16 Bits with no Support in China
I dont understand the peoples from OpenWrt project ! they are not concert about their project !
i was trying serveal days to compile my souce code for MIPsel processor ! but, neve run in by
hardware with OpenWrt and MIPs processor.
Discovering how the byte are assembled in Binary File:
The binary Image from my Compiled Code:
7F 45 4C 46 01 02 01 00 01 00 00 00 00 00 00 00
00 02 00 08 00 00 00 01 00 40 06 F0 00 00 00 34
00 00 0B 94 70 00 10 05 00 34 00 20 00 08 00 28
00 20 00 1D 00 00 00 06 00 00 00 34 00 40 00 34
Them, i found the mistake ! the compiler has making the MIPSel Big Endian format !
Next Step, search the Little Endian Format ! because my processor only runs Litle Endian
format and ..... i found nothing at OpenWrt:
http://downloads.openwrt.org/backfire/10.03.1/ar71xx/
Them, lonely i try to arrange my Bytes:
7F 45 4C 46 01 01 01 00 01 00 00 00 00 00 00 00 Replace 02 with 01
02 00 08 00 00 00 01 00 40 06 F0 00 00 00 34 00 make RolL Left (shl x,1) until end of file
And ....
BAD RUN !
What do now ?
Search a lot of times ! and i found one site with the compiler ...
I FOUND HERE MY CROSS COMPILER FOR MIPS 16 Bits ( Little Endian )
http://www.streamboard.tv/oscam/wiki/crosscompiling
And this is the Compilar:
http://www.streamboard.de.vu/wbb2/tut-pics/toolchains/Toolchain_MIPS-Router-uclib-0.9.28.bz2
This Compiler Works Fine !
7F 45 4C 46 01 01 01 00 01 00 00 00 00 00 00 00
02 00 08 00 01 00 00 00 80 4E 40 00 34 00 00 00
this position where the number 02 are, is fine ! and now run very well.
Bellow, how my file cmpiled is, and run pretty good.
i was trying serveal days to compile my souce code for MIPsel processor ! but, neve run in by
hardware with OpenWrt and MIPs processor.
Discovering how the byte are assembled in Binary File:
The binary Image from my Compiled Code:
7F 45 4C 46 01 02 01 00 01 00 00 00 00 00 00 00
00 02 00 08 00 00 00 01 00 40 06 F0 00 00 00 34
00 00 0B 94 70 00 10 05 00 34 00 20 00 08 00 28
00 20 00 1D 00 00 00 06 00 00 00 34 00 40 00 34
Them, i found the mistake ! the compiler has making the MIPSel Big Endian format !
Next Step, search the Little Endian Format ! because my processor only runs Litle Endian
format and ..... i found nothing at OpenWrt:
http://downloads.openwrt.org/backfire/10.03.1/ar71xx/
Them, lonely i try to arrange my Bytes:
7F 45 4C 46 01 01 01 00 01 00 00 00 00 00 00 00 Replace 02 with 01
02 00 08 00 00 00 01 00 40 06 F0 00 00 00 34 00 make RolL Left (shl x,1) until end of file
And ....
BAD RUN !
What do now ?
Search a lot of times ! and i found one site with the compiler ...
I FOUND HERE MY CROSS COMPILER FOR MIPS 16 Bits ( Little Endian )
http://www.streamboard.tv/oscam/wiki/crosscompiling
And this is the Compilar:
http://www.streamboard.de.vu/wbb2/tut-pics/toolchains/Toolchain_MIPS-Router-uclib-0.9.28.bz2
This Compiler Works Fine !
7F 45 4C 46 01 01 01 00 01 00 00 00 00 00 00 00
02 00 08 00 01 00 00 00 80 4E 40 00 34 00 00 00
this position where the number 02 are, is fine ! and now run very well.
Bellow, how my file cmpiled is, and run pretty good.
MIP Sel, 16 bITS - Little Endian
segunda-feira, 6 de maio de 2013
BugCheck Issue
BugCheck occours when anything goes wrong on system ! but, what things are there ?
The OS Microsoft has long BugCheck list.
The OS Microsoft has long BugCheck list.
List original at link: http://msdn.microsoft.com/en-us/library/windows/hardware/hh994433(v=vs.85).aspx
The most curius is the numer 0x109 ( Criticval Structurer Corruption ) that means changes as Patch ( hook ) and addrress changed as well.
But, is 0x109 is meaning it ! how to change it´s consequence ? how to trick the PatchGuardian ? and other question: is that right or one badly operation ?
Assinar:
Postagens (Atom)