How to create a new virtual network adapter in windows 8? [closed] - adapter

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have tried to install Packetix VPN client on windows 8 (64-bit). It cannot create a network adapter on my system. I tried to make a network adapter manually but i cant seem to find the option to create on.

You can use Command Prompt(Admin) in Windows 8 to setup a virtual network adapter:
use following commands:
netsh wlan set hostednetwork ssid=mynetwork key=12345678 mode=allow keyusage=persistent
// and when you press enter,there will be three messages in command prompt
//after that you can start your virtual network
netsh wlan start hostednetwork
This works for me

Related

Install HomeBrew and ruby LoadError question [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I was install HomeBrew,bec my area and network problem, terminal tells me:
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
So, I just install HomeBrew was used by install.rb file and ruby command, but the ruby was callback:
Traceback (most recent call last):
ruby: no Ruby script found in input (LoadError)
Thanks.
Reference:
Homebrew installation on Mac OS X Failed to connect to raw.githubusercontent.com port 443
Why is no Ruby script found in input (LoadError)?
try to install homebrew using all the steps from this link: https://www.howtogeek.com/211541/homebrew-for-os-x-easily-installs-desktop-apps-and-terminal-utilities/.
Also im not sure what you mean by the install.rb, what are you trying to do?

Why won't my deploy user use my ssh key? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I am trying to fix an ssh key error to work for a deploy user with my RoR Capistrano 3.3.5 project. I have an ubuntu 14.04 server which has my public ssh key authorized.
If I type ssh root#server-address.com my ssh key works, and I am immediately logged into my server.
If I type ssh deploy#server-address.com I am prompted for a password.
I need the deploy user to use the same key and authenticate without password. What is wrong? How do I go about making this happen?
I appreciate any help you can provide, thanks!
you need to add your public key to the deploy user's authorized_keys file which is located at /home/deploy/.ssh/authorized_keys on the server.
cat ~/.ssh/id_rsa.pub | ssh user#machine "mkdir ~/.ssh; cat >> ~/.ssh/authorized_keys"
this command would work for a new sever setup too.

Connection refused Is the server running on host "127.0.0.1"? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I ran the Rails server and, when trying to view my page on my localhost, I see this error:
Could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting TCP/IP connections on port 5432?
The weird thing is that a week ago this page was displaying and now it is not, so I don't understand what changed.
The 5432 port error is probably indicating that Rails is trying to connect to a PostgreSQL database that hasn't yet been created or isn't running.
Check to make sure your config\database.yml file is accurate and run the following command:
bundle exec rake db:create

telnet issue :Connecting To localhost...Could not open connection to the host, on port 11211: Connect failed [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this question
while Am trying to use following command
telnet localhost 11211
am getting this error
Connecting To localhost...Could not open connection to the host, on port 11211:
Connect failed
I enabled telnet.How can i overcome this error?
You should check your firewall settings (iptables --list as root or sudo for Linux), and see if there's anything possible blocking that. Check which ports are open (netstat -nl --inet) and also check running processes and find the process that you expect to be listening.
Whatever you expect to be listening on that port is probably not running, or is misconfigured.

My hosts file under Mac OS X 10.8 is empty [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I just opend my hosts file via the terminal and I must have accidentally wiped it last time I opened it!
Does anybody have the standard file content?
Mine looks like this:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost

Resources