zoukankan      html  css  js  c++  java
  • Fedora 15 live DVD USB 离线安装U盘制作

    Fedora 16

    Fedora 16于2011年11月8日正式发布。

    下载:

    http://fedoraproject.org/zh_CN/get-fedora-all

    http://torrent.fedoraproject.org/torrents/Fedora-16-x86_64-DVD.torrent

    http://download.fedoraproject.org/pub/fedora/linux/releases/16/Fedora/x86_64/iso/Fedora-16-x86_64-DVD.iso

    Fedora 15 关机按钮

    桌面,右上角,点一下,看见了“挂起”。按住alt键,就看见了“关机”……

    Fedora 15 ADSL拨号

    Fedora 15桌面右上角的网络连接里面不能设置ADSL拨号,需要点桌面左上角的活动——》应用程序——》其他——》网络连接,或者在终端里面启动nm-connection-editor。

    建立DSL,然后在桌面右上角里面选“DSL 连接 1”。截图在文章最后。

    上面这2点问题,让我很惊讶,第一个问题是google出来的,第二个问题是拔了网线、找了个路由器拨号上网、然后google出来的。震惊、震惊、gnome3史无前例啊……

    由于以上2点太雷人,所以放到文章开头。

    Fedora的优点:

    1、gnome3简洁,也挺好看,能整体放大,深得俺这种爱惜眼睛的大字号爱好者的喜爱。

    2、Fedora比Ubuntu的软件新,Fedora已经是PHP 5.3.6和Mysql 5.5.12了。

    3、Fedora 15 DVD安装速度快,感觉约20分钟,而Ubuntu 11.04 DVD感觉需要50分钟。

    Fedora的缺点:

    1、yum不会自动提示,而Ubuntu的apt-get可以自动提示。安装软件很不方便,必须知道全名。

    2、Fedora装显卡驱动比较困难,而Ubuntu可以通过“附加驱动”的界面自动安装。

    制作Fedora 15 DVD live usb离线安装的步骤:

    Fedora 15 DVD支持U盘启动,默认情况下安装需要联网,修改一下即可实现离线安装。

    方法:把ISO写入U盘,把镜像ISO拷到U盘里,修改syslinux.cfg。

    在Windows下,制作Fedora 15 DVD Live USB 离线安装

    下载liveusb-creator:https://fedorahosted.org/liveusb-creator/

    使用liveusb-creator把镜像写入U盘。

    把Fedora-15-x86_64-DVD.iso复制到U盘根目录。

    修改U盘/syslinux/syslinux.cfg,改成append initrd=initrd.img linux askmethod

    开机,从U盘启动,在“Installation Method”界面选择“Hard driver”,然后选择U盘(一般是最后一个),即可。

    截图:

    在Ubuntu下,制作Fedora 15 DVD Live USB 离线安装

    sudo add-apt-repository ppa:gezakovacs
    sudo apt-get update
    sudo apt-get install extlinux
    sudo apt-get install unetbootin
    sudo unetbootin

    Fedora与Ubuntu双启动菜单

    1、先安装Ubuntu,后安装Fedora(实测成功)

    假设:Ubuntu安装在/dev/sda1,Fedora安装在/dev/sda2

    结果:Fedora安装后,Grub启动菜单中只有Fedora

    在Fedora下,需要把Ubuntu添加进Grub

    步骤:挂载Ubuntu分区,打开/media/xxxx-guid-xxxx/boot/grub/grub.cfg,搜索vmlinuz

    sudo vi /boot/grub/menu.lst

    改成这样:

    # grub.conf generated by anaconda
    #
    # Note that you do not have to rerun grub after making changes to this file
    # NOTICE:  You do not have a /boot partition.  This means that
    #          all kernel and initrd paths are relative to /, eg.
    #          root (hd0,1)
    #          kernel /boot/vmlinuz-version ro root=/dev/sda2
    #          initrd /boot/initrd-[generic-]version.img
    #boot=/dev/sda
    default=0
    timeout=3
    splashimage=(hd0,1)/boot/grub/splash.xpm.gz
    #hiddenmenu
    title Fedora (2.6.38.6-27.fc15.x86_64)
            root (hd0,1)
            kernel /boot/vmlinuz-2.6.38.6-27.fc15.x86_64 ro root=UUID=421f4c13-4ec1-4c92-8c75-f7178eef828f rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=zh_CN.UTF-8 KEYTABLE=us rhgb quiet
            initrd /boot/initramfs-2.6.38.6-27.fc15.x86_64.img
    
    title Ubuntu 11.04 x64
            root (hd0,0)
            kernel  /boot/vmlinuz-2.6.38-8-generic root=UUID=5e1708fa-915f-4b3d-9fa6-1aef9bb71b2e ro   quiet splash vt.handoff=7
            initrd  /boot/initrd.img-2.6.38-8-generic
    

    2、先安装Fedora,后安装Ubuntu(未测试)

    Ubuntu安装时会检测已安装的操作系统,比如Windows、Fedora等等,自动添加到启动菜单中。

    Fedora 15切换中文目录为英文目录

    Fedora 15登录界面不能切换文字,所以需要使用命令来转换中文目录为英文目录。即/home中的“桌面”、“下载”等等转换成“Desktop”、“Downloads”等等。

    export LANG=en_US
    xdg-user-dirs-gtk-update
    export LANG=zh_CN.UTF-8
    

    Fedora 15 alipay 支付宝 Firefox Chrome x64

    alipay支持Fedora 15,安装方法于Ubuntu相同。

    参考:Ubuntu 11.04 x64 常用软件及编译安装Lamp开发环境 http://www.cnblogs.com/sink_cup/archive/2011/03/18/ubuntu_x64_software.html

    Fedora 15编译安装lamp

    Fedora、CentOS与Redhat命令一致,编译安装lamp也一样。参考:http://www.cnblogs.com/sink_cup/archive/2010/11/22/centos_apache_php_pdo_mysql_curl_json_gd.html

    参考资料

    http://blogold.chinaunix.net/u3/116920/showart_2420114.html

    http://www.linuxidc.com/Linux/2011-05/36593.htm

  • 相关阅读:
    1.01 与 0.99 的法则,Python 实现。
    Python list 数据类型:列表
    CDays3 习题一 (处理命令行参数)及相关内容解析。Python getopt 简介
    Arduino 外部中断
    关于普通定时器与高级定时器的 PWM输出的初始化的区别
    电平配配
    C#就地修改字符串
    将DataTable数据转化为Model对象列表
    SQL Server 事件探查器安装
    C语言模拟泛型粘贴符##的使用 迁移
  • 原文地址:https://www.cnblogs.com/sink_cup/p/fedora_15_dvd_live_usb_ubuntu_grub.html
Copyright © 2011-2022 走看看