我想使用没有本地存储的MythTV前端系统。如何将它们设置为从网络驱动器(神话中没有磁盘)引导?
发布于 2011-11-21 21:38:34
安装必要的先决条件。
sudo apt-get install mythbuntu-diskless-server tftpd-hpasudo apt-get install mythbuntu-diskless-server-standalone tftpd-hpa操作sudo vi /etc/default/tftpd-hpaTFTP_DIRECTORY="/var/lib/tftpboot/ltsp/i386"sudo service tftpd-hpa restartsudo dpkg-reconfigure mythbuntu-diskless-serverltsp-build-client --extra-helpsudo ltsp-build-client --mythbuntu --mythbuntu-user-credentials="your-user-id-here:your-password-here"dhcp-boot=pxelinux.0,,X.X.X.Xdhcp-boot=/pxelinux.0,,X.X.X.Xsudo vi /etc/dhcp3.confallow booting;<br />allow bootp;<br />class "pxeclients" {<br /> match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";<br /> next-server 192.168.1.100;<br /> filename "linux-install/pxelinux.0";<br />}#option domain-name "domain";<br />default-lease-time 600;<br />max-lease-time 7200;<br />ddns-update-style ad-hoc;<br />subnet 192.168.1.0 netmask 255.255.255.0 {<br /> range 192.168.1.60 192.168.1.60;<br /> }<br /> option option-150 code 150 = text ; <br /> host mythtoo { <br /> hardware ethernet 00:14:2A:B3:E4:1C; <br /> option option-150 "/mnt/pxe/boot/grub.lst"; <br /> option routers 192.168.1.1;<br /> next-server 192.168.1.90;<br /> filename "/mnt/pxe/boot/pxegrub"; <br /> filename "/mnt/pxe/pxelinux.0";<br /> }了
sudo mount -o bind /proc /opt/ltsp/i386/proc/sudo chroot /opt/ltsp/i386一些你能做的事
wget http://www.mythbuntu.org/files/mythbuntu-repos.deb dpkg -i mythbuntu-repos.deb dpkg-reconfigure mythbuntu-repos apt-get update apt-get upgradecd /etc/gdm vi custom.conf[daemon]<br />DefaultSession=mythbuntu<br />TimedLoginEnable=false<br />AutomaticLoginEnable=true<br />TimedLogin=mythtv<br />AutomaticLogin=mythtv<br />TimedLoginDelay=0<br />cd /etc/mythtvvi /etc/modprobe.d/blacklist.confblacklist nouveau的末尾apt-get install nvidia-common apt-get install nvidia-currentexit sudo umount /opt/ltsp/i386/proc sudo ltsp-update-imagecd /var/cache/mythbuntu-diskless/overlay sudo rm -fr *时设置到前端的所有设置。NVIDIA-司机决赛
CTRL-ALT-F1sudo service gdm stop sudo sh ./PATH_TO_DOWNLOADED_NVIDIA_DRIVERS sudo service gdm startalsamixerhttps://askubuntu.com/questions/81446
复制相似问题