Linux--fedora21 PC机安装以及拨号上网和无限上网

最近回家,学习许久未用的linux,之前也是在培训的时候用的是 ubuntu ,这次回家查了下 fedora 最适合开发人员使用,所以就装了个试试。刚开始只能拨号上网,经过三天时间的各种搜索查找终于解决了无线上网问题,感觉挺开心!现在大致写出来分享以下,希望可以帮助对fedora有兴趣的同学们!

  • 设备   笔记本(硬件型号最好是主流的,兼容性问题很难解决) + 有根可以上网的网线
  • 步骤
      1. 在 fedora 官网 https://getfedora.org/ 上下载 最新版 live 镜像,选择 WORKSTATION (版本选择里面很详细,个人就选这个),电脑内存 >=4G 的装 64 位的系统;
      2. 搜索下载 Poweriso 软件,按照步骤去制作 U 盘启动盘,然后开机按 F12 进入 bios 选择 USB 启动……具体系统安装比较简单,就不说了,注意下选择手动分区;
      3. 安装好系统后查好网线设置拨号上网和无线上网:
    1. 首先设置拨号上网帐号,密码和服务器等。之后使用pppoe-start即可上网,具体步骤如下:

      [[email protected]
      ~]# pppoe-setup ---------------这里开始安装PPPOE

      Welcome
      to the PPPoE client setup. First, I will run some checks on

      your
      system to make sure the PPPoE client is installed properly...

      LOGIN
      NAME

      Enter
      your Login Name (default root): [email protected]
      ---------------这里是上网的帐号

      INTERFACE

      Enter
      the Ethernet interface connected to the PPPoE modem

      For
      Solaris, this is likely to be something like /dev/hme0.

      For
      Linux, it will be ethX, where ‘X‘ is a number.

      (default
      eth0): ---------------这里按回车键(我这里的是enp4s0)

      Do
      you want the link to come up on demand, or stay up continuously?

      If
      you want it to come up on demand, enter the idle time in seconds

      after
      which the link should be dropped. If you want the link to

      stay
      up permanently, enter ‘no‘ (two letters, lower-case.)

      NOTE:
      Demand-activated links do not interact well with dynamic IP

      addresses.
      You may have some problems with demand-activated links.

      Enter
      the demand value (default no): ---------------这里按回车键

      DNS

      Please
      enter the IP address of your ISP‘s primary DNS server.

      If
      your ISP claims that ‘the server will provide dynamic DNS addresses‘,

      enter
      ‘server‘ (all lower-case) here.

      If
      you just press enter, I will assume you know what you are

      doing
      and not modify your DNS setup.

      Enter
      the DNS information here: ---------------这里键入
      server
      也就是自动获得DNS

      PASSWORD

      Please
      enter your Password: ---------------这里键入上网拨号密码

      Please
      re-enter your Password: ---------------这里键入上网拨号密码

      USERCTRL

      Please
      enter ‘yes‘ (three letters, lower-case.) if you want to allow

      normal
      user to start or stop DSL connection (default yes):
      ---------------这里键入 yes

      FIREWALLING

      Please
      choose the firewall rules to use. Note that these rules are

      very
      basic. You are strongly encouraged to use a more sophisticated

      firewall
      setup; however, these will provide basic security. If you

      are
      running any servers on your machine, you must choose ‘NONE‘ and

      set
      up firewalling yourself. Otherwise, the firewall rules will deny

      access
      to all standard servers like Web, e-mail, ftp, etc. If you

      are
      using SSH, the rules will block outgoing SSH connections which

      allocate
      a privileged source port.

      The
      firewall choices are:

      0
      - NONE: This script will not set any firewall rules. You are
      responsible

      for
      ensuring the security of your machine. You are STRONGLY

      recommended
      to use some kind of firewall rules.

      1
      - STANDALONE: Appropriate for a basic stand-alone web-surfing
      workstation

      2
      - MASQUERADE: Appropriate for a machine acting as an Internet gateway

      for
      a LAN

      Choose
      a type of firewall (0-2): 0 ---------------这里键入
      0

      Start
      this connection at boot time

      Do
      you want to start this connection at boot time?

      Please
      enter no or yes (default no):y ---------------这里键入
      y

      **
      Summary of what you entered **

      Ethernet
      Interface: eth0

      User
      name: xy170638010214

      Activate-on-demand:
      No

      DNS
      addresses: Supplied by ISP‘s server

      Firewalling:
      NONE

      User
      Control: yes

      Accept
      these settings and adjust configuration files (y/n)? y
      ---------------这里键入 y

      Adjusting
      /etc/sysconfig/network-scripts/ifcfg-ppp0

      Adjusting
      /etc/ppp/chap-secrets and /etc/ppp/pap-secrets

      (But
      first backing it up to /etc/ppp/chap-secrets.bak)

      (But
      first backing it up to /etc/ppp/pap-secrets.bak)

      Congratulations,
      it should be all set up!

      Type
      ‘/sbin/ifup ppp0‘ to bring up your xDSL link and ‘/sbin/ifdown ppp0‘

      to
      bring it down.

      Type
      ‘/sbin/pppoe-status /etc/sysconfig/network-scripts/ifcfg-ppp0‘

      to
      see the link status.

      [[email protected]
      ~]# pppoe-start ---------------激活PPPOE设备,成功后会自动返回

      [[email protected]
      ~]# pppoe-status ---------------查看PPPOE状态

      2.设置无线上网

       设置好包好连接后,可以先 sudo yum update 更新系统,查看无线网卡型号,在终端输入 lspci |grep -i network

        [[email protected] ~]$ lspci |grep -i network
        03:00.0 Network controller: Broadcom Corporation BCM43142 802.11b/g/n (rev 01)
        这个型号的网卡我找了好多帖子,但是未果,后来搜索该网卡兼容性的时候发现了一个帖子完美解决了这个问题,方法如下:

        

          用root直接
          yum
localinstall --nogpgcheck
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm

          http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm

             之后直接yum
install kmod-wl

             最后reboot。

           之后可爱的NetworkManager里出现了wifi...

          

好了大致就这样咯!最后看看我的桌面吧!

时间: 2024-08-02 11:04:32

Linux--fedora21 PC机安装以及拨号上网和无限上网的相关文章

嵌入式linux和pc机的linux对比

linux本身具备的很大优点就是稳定,内核精悍,运行时需要的资源少.嵌入式linux和普通linux并无本质区别. 在嵌入式系统上运行linux的一个缺点就是其核心架构没有重新设计过,而是直接从桌面linux精简过来,一次虽然具有抢占式多任务的能力,但是在实时反映性能上有时会表现的较为逊色.所以,为了提供实时性能,嵌入式linux需要添加实时软件模块.而这些模块运行的内核空间正是操作系统实现调度策略,硬件中断异常和执行程序的部分.由于这些实时软件模块是在内核空间运行的,所以代码错误可能会破坏操作

嵌入式linux和pc机的linux对照

linux本身具备的非常大长处就是稳定,内核精悍,执行时须要的资源少.嵌入式linux和普通linux并无本质差别. 在嵌入式系统上执行linux的一个缺点就是其核心架构没有又一次设计过,而是直接从桌面linux精简过来,一次尽管具有抢占式多任务的能力,可是在实时反映性能上有时会表现的较为逊色. 所以,为了提供实时性能.嵌入式linux须要加入实时软件模块. 而这些模块执行的内核空间正是操作系统实现调度策略.硬件中断异常和执行程序的部分.因为这些实时软件模块是在内核空间执行的,所以代码错误可能会

PC机安装 CentOS6.5 提示sda必须有一个GPT磁盘标签!

今天安装CentOS6.5到分完区,按下一步的时候提示  sda必须有一个GPT磁盘标签,无法继续安装.百度一下,这个时候需要建一个gpt的标签,如下: 1.在当前界面按ctrl+alt+f2的组合键,进入命令行 输入parted 输入mklabel gpt /dev/sda 然后输入Yes 使用print /dev/sda 进行确认 按ctrl+alt+f6回到安装界面 2.先返回上一步,接着重新分区,顺利通过

pc机安装centos6.5,提示sda必须有一个GPT磁盘标签处理

1.在进入安装界面,也就出现图形界面时,对它命令首先创建gpt --按ctrl+alt+f2的组合键,然后进入命令行 --进行如下操作输入parted输入mklabel gpt /dev/sda在提示界面中,输入Yes使用print /dev/sda 进行确认按ctrl+alt+f6回到安装界面 2.再次按顺序安装,对硬盘进行重新分区,顺利通过

VMWare安装的linux和宿主机时间同步

安装 vmware tools 2. 修改虚拟机 vmx 文件 tools.syncTime 改为 "TRUE" 3. 重启虚拟机 此时发现时间比系统时间少了10+个小时 4. 修改 /etc/sysconfig/clock # cat /etc/sysconfig/clock ZONE="America/Los_Angeles" UTC=true ARC=false UTC为true表示RTC保存的时间是UTC时间,false表示保存的是本地时间. 将其修改为:

linux pc syncy安装问题

linux pc 上安装syncy遇到的坑 pycurl安装可以指定curl-config,这个是根据自己机器libcurl安装位置确定,不在默认位置时要指定:python setup.py install --curl-config=/usr/local/bin/curl-config import pycurl报错:undefined symbol:curl_multi_socket_action 这是由于链接curl动态库出错,可以查看pycurl.so文件引用的是那个库,ldd pyth

Deepin Linux 实体机安装

Deepin Linux 实体机安装 1.下载ISO镜像并刻录到U盘上 系统ISO镜像下载 深度技术 刻录工具下载 深度技术(下方有深度启动盘制作工具下载) 这两个都下载好之后,打开刻录工具,选择镜像->选择U盘,刻录就好了 2.插入U盘开始安装Deepin 意外情况 :个别主机(如我的主机),USB启动盘需要插入对应主板上的USB接口,如果是扩展的USB接口则会导致安装失败,再多记一点,花了很久的时间才发现这点,大坑,我的机子比较特别,如果USB口不是主板上的,键盘和鼠标都会用不了,主机的问题

普通pc电脑安装苹果系统mac_详细教程(精)附带所有工具下载

苹果操作系统只允许在苹果电脑上面安装和使用.和Windows不一样,要在PC上安装,需要一系列的模拟和破解.破解安装的过程很繁琐而具有挑战性,以下是安装10A432雪豹的PC安装指南,附带25张图片帮助说明,没有远景ID的朋友可以打开链接查看. 请准备必要的东西: 配备Windows操作系统而且能够上网的PC 雪豹安装光盘dmg镜像文件(10A432正式零售版MD5校验码是bcd4957b2f86216dddc8f1472c20f098) 23G的可用空间 你的勇气和耐性 这个指南可能最适合从来

如何利用PC机搭建综合实验环境之Vmware workstation篇

无论学习windows还是linux,还是学习这些系统上的应用,我们都需要一台甚至多台服务器.但一台服务器动辄上万元,做为正在学习的学生或个人根本无力购买.况且一些实验不止需要一台,还需要多台服务器.再加上供电等因素,个人买服务器来做实验真的是不可能的事情.但不通过实验的话又很难将知识串联起来,实践是检验真理的唯一标准.因此,今天我们来讲如何通过一台PC模拟多台服务器.PC,并且模拟交换机.路由器.防火墙.AAA服务器,最后将交换机,路由器.防火墙.服务器连接起来,搭建成一个综合的实验环境,完成