web-dev-qa-db-ja.com

LinuxでTunモジュールを実行する方法start

私はTunを使用してインストールしました:

modprobe tun

その後、しました:

lsmod | grep tun
tun                    83840  0

再起動時にTunを実行する方法を教えてください。

これはHamachiのWebサイトに書かれています。

...Then add tun to the list of modules by using your favorite text editor and Create /etc/modules-load.d/tun.conf 

#Load tun module at boot.
tun

しかし、このフォルダの敵は私の/ etcに存在しません

/etc/rc.localに「modprobetun」という行を追加するのは賢明ですか?

1
16851556

/ etc/modulesという名前のファイルはありますか?はいの場合、編集してそこにtunを追加できます

CentOSについては、これをチェックしてください http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-kernel-modules-persistant.html

これらの2つのコマンドを実行すると、起動時にtunモジュールをロードするコマンドを使用してrc.modulesが作成されます。

echo modprobe tun >> /etc/rc.modules
chmod +x /etc/rc.modules
1
Wutiphong