It's probably the USB dongle that's gone wrong - not much you can do about it except buy a new one or stick to the wired keyboard."I've always been mad, I know I've been mad, like the most of us..." Pink Floyd
It’s probably the USB dongle that’s gone wrong – not much you can do about it except buy a new one or stick to the wired keyboard.
“I’ve always been mad, I know I’ve been mad, like the most of us…” Pink Floyd
Your english and hence question is confusing.Have you got a dual boot with Vista and Windows 7 and you want to remove Vista?OrHave you got Vista and you want to replace it with Windows 7? ___________________________________________☺ When everything else fails, read the instructions.
Your english and hence question is confusing.
Have you got a dual boot with Vista and Windows 7 and you want to remove Vista? Or Have you got Vista and you want to replace it with Windows 7?
___________________________________________ ☺ When everything else fails, read the instructions.
Start here. http://www.sun.com/software/solaris...http://www.homepage.montana.edu/~un... Also. "The Firewall I strongly recommend using the firewall. Edit /etc/ipf/pfil.ap. Uncomment the interfaces you want filtering on, probably your primary ethernet interface. Use /sbin/ifconfig -a if you don't knRead more
Edit /etc/ipf/pfil.ap. Uncomment the interfaces you want filtering on, probably your primary ethernet interface. Use /sbin/ifconfig -a if you don’t know the interface names
/usr/sbin/svcadm restart network/pfil
Create /etc/ipf/ipf.conf. I suggest starting with rules that allow all traffic:
pass in quick all pass out quick all
/usr/sbin/svcadm enable network/ipfilter
Reboot. You’re supposed to be able to replumb but it didn’t work for me.
Once the system is up and you verify that you can still use the network, try doing some real rules. Here’s an example ipf.conf. It is ‘default deny’. I.e. it allows specific things and prohibits everything else. I strongly recommend that. It also runs in stateful mode, which is the only practical way to allow all outgoing transactions and deny incoming.
This example allows all outgoing connections, and incoming for a few services. For a pure client machine I’d remove all the pass in TCP rules and maybe also ICMP. icmp type 8 is needed to respond to ping. 13 is time stamp request, which may or may not matter. With this setting you won’t get or process various error mesages that are sent by routers, etc using ICMP. They have been a source of security issues, but may still be useful. Obviously you can turn on all ICMP by removing the icmp-type NN or omit the icmp rules in which case all ICMP incoming will be off. (Note that the instructions in the web page below are wrong for allowing ping. It is icmp type 8, not 0)
pass in quick proto tcp from any to any port = 22 keep state pass in quick proto tcp from any to any port = 80 keep state pass in quick proto tcp from any to any port = 8080 keep state pass in quick proto tcp from any to any port = 443 keep state pass in quick proto icmp from any to any icmp-type 8 keep state pass in quick proto icmp from any to any icmp-type 13 keep state pass out quick from any to any keep state block in quick all
After changing /etc/ipf/ipf.conf, do
ipf -Fa -f /etc/ipf/ipf.conf
Even if you’re not going to create a NAT, you’ll want one entry in ipnat.conf. It’s a proxy that makes FTP work. Otherwise you can only use passive FTP. Put the following in /etc/ipf/ipnat.conf
map bge0 0/0 -> 0/32 proxy port 21 ftp/tcp
Note that is needs your ethernet interface name, which on my machine is bge0. Use ifconfig -a to find your name if you don’t know it. This only handles clients who want to use FTP. If you want incoming FTP to work, things get a lot more complex. You’ll need to see the full instructions
After changing /etc/ipf/ipnat.conf do
ipnat -CF -f /etc/ipf/ipnat.conf
There’s a utility “ipfstat” that will show you the current rules and how they are working. See the man page for details.
What program is it that you want to run? DOS-based? Windows-based? Don't forget XP is very over-protected and will not allow you to manipulate any segment of the loading process before the welcome screen / login.i_XpUser
What program is it that you want to run? DOS-based? Windows-based? Don’t forget XP is very over-protected and will not allow you to manipulate any segment of the loading process before the welcome screen / login.
Let's see if this solves some of your problems... Download unhide.exe http://download.bleepingcomputer.co... Save it to your Windows folder: Right click on unhide.exe and select: Run as administrator (Win7) Restart the computer. This will unhide folders/files set to hidden by the infection. Any progRead more
i have lost my internet explorer icon
Find any IE icon in search and drag it back."The era of big government is over," said Clinton 1996
Find any IE icon in search and drag it back.
“The era of big government is over,” said Clinton 1996
See lessCannot get compcln.exe to work to clean up winsxs directory
local disk e and f not detected on my pc
will not boot with wireless keyboard
It's probably the USB dongle that's gone wrong - not much you can do about it except buy a new one or stick to the wired keyboard."I've always been mad, I know I've been mad, like the most of us..." Pink Floyd
It’s probably the USB dongle that’s gone wrong – not much you can do about it except buy a new one or stick to the wired keyboard.
“I’ve always been mad, I know I’ve been mad, like the most of us…” Pink Floyd
See lessuninstall window vista home basic 32 bit
Your english and hence question is confusing.Have you got a dual boot with Vista and Windows 7 and you want to remove Vista?OrHave you got Vista and you want to replace it with Windows 7? ___________________________________________☺ When everything else fails, read the instructions.
Your english and hence question is confusing.
Have you got a dual boot with Vista and Windows 7 and you want to remove Vista?
Or
Have you got Vista and you want to replace it with Windows 7?
___________________________________________
See less☺ When everything else fails, read the instructions.
Solved Solaris – Enable Firewall
Start here. http://www.sun.com/software/solaris...http://www.homepage.montana.edu/~un... Also. "The Firewall I strongly recommend using the firewall. Edit /etc/ipf/pfil.ap. Uncomment the interfaces you want filtering on, probably your primary ethernet interface. Use /sbin/ifconfig -a if you don't knRead more
Start here.
http://www.sun.com/software/solaris…
http://www.homepage.montana.edu/~un…
Also.
“The Firewall
I strongly recommend using the firewall.
Edit /etc/ipf/pfil.ap. Uncomment the interfaces you want filtering on, probably your primary ethernet interface. Use /sbin/ifconfig -a if you don’t know the interface names
/usr/sbin/svcadm restart network/pfil
Create /etc/ipf/ipf.conf. I suggest starting with rules that allow all traffic:
pass in quick all
pass out quick all
/usr/sbin/svcadm enable network/ipfilter
Reboot. You’re supposed to be able to replumb but it didn’t work for me.
Once the system is up and you verify that you can still use the network, try doing some real rules. Here’s an example ipf.conf. It is ‘default deny’. I.e. it allows specific things and prohibits everything else. I strongly recommend that. It also runs in stateful mode, which is the only practical way to allow all outgoing transactions and deny incoming.
This example allows all outgoing connections, and incoming for a few services. For a pure client machine I’d remove all the pass in TCP rules and maybe also ICMP. icmp type 8 is needed to respond to ping. 13 is time stamp request, which may or may not matter. With this setting you won’t get or process various error mesages that are sent by routers, etc using ICMP. They have been a source of security issues, but may still be useful. Obviously you can turn on all ICMP by removing the icmp-type NN or omit the icmp rules in which case all ICMP incoming will be off. (Note that the instructions in the web page below are wrong for allowing ping. It is icmp type 8, not 0)
pass in quick proto tcp from any to any port = 22 keep state
pass in quick proto tcp from any to any port = 80 keep state
pass in quick proto tcp from any to any port = 8080 keep state
pass in quick proto tcp from any to any port = 443 keep state
pass in quick proto icmp from any to any icmp-type 8 keep state
pass in quick proto icmp from any to any icmp-type 13 keep state
pass out quick from any to any keep state
block in quick all
After changing /etc/ipf/ipf.conf, do
ipf -Fa -f /etc/ipf/ipf.conf
Even if you’re not going to create a NAT, you’ll want one entry in ipnat.conf. It’s a proxy that makes FTP work. Otherwise you can only use passive FTP. Put the following in /etc/ipf/ipnat.conf
map bge0 0/0 -> 0/32 proxy port 21 ftp/tcp
Note that is needs your ethernet interface name, which on my machine is bge0. Use ifconfig -a to find your name if you don’t know it. This only handles clients who want to use FTP. If you want incoming FTP to work, things get a lot more complex. You’ll need to see the full instructions
After changing /etc/ipf/ipnat.conf do
ipnat -CF -f /etc/ipf/ipnat.conf
There’s a utility “ipfstat” that will show you the current rules and how they are working. See the man page for details.
For more detailed instructions, see http://www.obfuscation.org/ipf/ipf-… “
From here. http://techdir.rutgers.edu/sol10.html
“Best Practices”, Event viewer, host file, perfmon, antivirus, anti-spyware, Live CD’s, backups, are in my top 10
See lessRun program befor login
What program is it that you want to run? DOS-based? Windows-based? Don't forget XP is very over-protected and will not allow you to manipulate any segment of the loading process before the welcome screen / login.i_XpUser
What program is it that you want to run? DOS-based? Windows-based? Don’t forget XP is very over-protected and will not allow you to manipulate any segment of the loading process before the welcome screen / login.
i_XpUser
See lesshow to enable a disabled keyboard
security update won’t download KB2431831
+1
ALL files hidden, blank desktop, random music
Let's see if this solves some of your problems... Download unhide.exe http://download.bleepingcomputer.co... Save it to your Windows folder: Right click on unhide.exe and select: Run as administrator (Win7) Restart the computer. This will unhide folders/files set to hidden by the infection. Any progRead more
Let’s see if this solves some of your problems…
Download unhide.exe
http://download.bleepingcomputer.co…
Save it to your Windows folder:
Right click on unhide.exe and select: Run as administrator (Win7)
Restart the computer.
This will unhide folders/files set to hidden by the infection.
Any progress?
See less