Ubuntu 14.04LTS में SSH को स्थापित करना


0

नमस्ते हर एक को मैंने अपने Ubuntu 14.04LTS में SSH को स्थापित करने की कोशिश की, जो vmware में है, लेकिन ज्यादातर समय मुझे निम्नलिखित त्रुटि संदेश मिलता है कृपया गलत क्या हो सकता है?

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 ssh : Depends: openssh-server (>= 1:6.6p1-2ubuntu2.8) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

2
एक शुरुआत के लिए आप अपने द्वारा चलाए गए कमांड को शामिल करना भूल गए।
टेकरफ

कोशिश करें कि sudo apt-get install -fयह आपकी समस्या को हल करने में मदद करे।
एलेक्स लोव

जवाबों:


3

टर्मिनल खोलें और टाइप करें:

sudo apt-get update  
sudo apt-get install openssh-client # client for secure access to remote machines  
sudo apt-get install aptitude  
sudo aptitude install ssh

वैकल्पिक आदेश:

sudo apt-get install openssh-server # server for secure access from remote machines
sudo apt-get install hotssh # GUI front-end for ssh
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.