スポンサーリンク いろいろ役立つ情報 †Debianのインストール †
ネットワーク設定 †# vi /etc/network/interfaces auto lo iface lo inet loopback iface eth0 inet dhcp auto eth0 allow-hotplug eth1 #iface eth1 inet dhcp iface eth1 inet static address 192.168.1.131 network 192.168.1.0 netmask 255.255.255.0 broadcast 192.168.1.255 gateway 192.168.1.1 auto eth1 # vi /etc/resolv.conf nameserver 192.168.1.1 # /etc/init.d/networking restart コンソールの言語設定 †# dpkg-reconfigure locales # reboot # locale # emacs .profile LANG=en_US LANGUAGE=en_US LC_ALL=en_US
ソースリストからCDを削除 †# vi /etc/apt/sources.list # deb cdrom:[Debian GNU/Linux 4.0 r6 _Etch_ - Official i386 NETINST Binary-1 20081220-23:12]/ etch contrib main SSH †# aptitude install ssh # cp /etc/ssh/sshd_config /etc/ssh/sshd_config.default # vi /etc/ssh/sshd_config #PermitRootLogin yes PermitRootLogin no # vi /etc/hosts.allow sshd:192.168.1. sshd:127.0.0.1 # /etc/init.d/ssh restart emacsのインストール †# aptitude install emacs PATHの追加(sbin) †# emacs /etc/profile PATH="/usr/local/bin:/usr/bin:/bin:/sbin:/usr/games" # export $PATH sudoのインストール †# aptitude install sudo # visudo 解凍ツールのインストール †# aptitude install bzip2 コンパイル環境のインストール †# aptitude install cc # aptitude install gcc # aptitude install make traceroute6とかを使うためのツールインストール †# aptitude install iputils-tracepath ターミナルの色変更 †# setterm -clear all -foreground white -background blue sambaのインストール †debian:~# aptitude install samba debian:~# smbpasswd -U hogehoge New SMB password: Retype new SMB password: debian:~# emacs /etc/samba/smb.conf [homes] comment = Home Directories browseable = no writable = yes create mask = 0744 directory mask = 0755 debian:~# /etc/init.d/samba restart Stopping Samba daemons: nmbd smbd. Starting Samba daemons: nmbd smbd. Apacheのインストール †
ntp †# apt-get install ntp ntpdate ntp-doc ntp-simple # vi /etc/ntp.conf # ntpq -pn # vi /etc/default/rcS # Set UTC=yes if your system clock is set to UTC (GMT), and UTC=no if not. UTC=no sourcelist †deb http://ftp.jp.debian.org/debian etch main contrib non-free deb http://security.debian.org etch/updates main contrib non-free deb http://ftp.jp.debian.org/debian-volatile etch/volatile main contrib # volatile を使う場合。 deb http://www.jp.backports.org/ etch-backports main contrib non-free # backports を使う場合。 cronttab †
Total:5855 / Today:2 / Yesterday:0 スポンサーリンク |