web-dev-qa-db-ja.com

ap-hotspotのインストール方法

Ubuntu12.04にap-hotspotをインストールできないようです。次のコマンドを実行する必要があることをどこかで読みました。

$ Sudo su -
# add-apt-repository ppa:nilarimogard/webupd8
# aptitude update
# aptitude install ap-hotspot
# ap-hotspot configure
# ap-hotspot start

しかし、エラーSomething wicked happened resolving 'packages.medibuntu.org:http'が発生したため、端末がaptitudeの更新でスタックします。 medibuntuが閉鎖されたからだと言われました。そのため、aptitude updateを再度実行する前に、/etc/apt/sources.list.d/に移動して、medibuntuに関連するすべてのものを削除する必要がありました。

次に、apt-get install ap-hotspotを実行しようとしましたが、エラーが発生しました

The following packages have unmet dependencies:
 ap-hotspot : Depends: dnsmasq but it is not going to be installed

そこで、apt-get install dnsmasqを実行しましたが、エラーが発生しました。

The following packages have unmet dependencies:
 dnsmasq : Depends: dnsmasq-base (>= 2.59-4) but it is not going to be installed

そこで、apt-get install dnsmasq-baseを実行しましたが、次のメッセージが表示されました。

dnsmasq-base is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 260 not upgraded.

では、どうすればap-hotspotを機能させることができますか?

2
John

ap_hotspotは古く、開発者によるさらなる開発は行われていません。

create_apは、無料で入手できるLinuxディストリビューション用の新しいホットスポットクリエーターです。 githubと同期して自分で作成します。

git clone https://github.com/oblique/create_ap
cd create ap
make install

/ *上記の方法はDebianベースの配布用です*/create apを初期化します:1)ターミナルを起動します2)タイプcreate_apコマンドを表示するには3)同じインターフェイスネットワークタイプからインターネット共有を作成するには:

create_ap wlan0 wlan0 MyAccessPoint MyPassPhrase

ソース: 余分なコマンドをチェックしてください

1
Sonu Prasad
dnsmasq-base:
  Installed: 2.68-1
  Candidate: 2.68-1
  Version table:
 *** 2.68-1 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages
        100 /var/lib/dpkg/status
dnsmasq:
  Installed: (none)
  Candidate: (none)
  Version table:
ap-hotspot:
  Installed: (none)
  Candidate: 0.3-1~webupd8~4
  Version table:
     0.3-1~webupd8~4 0
        500 http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu/ trusty/main AMD64 Packages
0
user105580