首页 > 系统 > Linux > 正文

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

2024-06-28 13:22:06
字体:
来源:转载
供稿:网友
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即可上网,具体步骤如下:

      [root@localhost~]# pppoe-setup ---------------这里开始安装PPPOE

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

      yoursystem to make sure the PPPoE client is installed PRoperly...

      LOGINNAME

      Enteryour Login Name (default root): 081842162@ahut---------------这里是上网的帐号

      INTERFACE

      Enterthe Ethernet interface connected to the PPPoE modem

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

      ForLinux, it will be ethX, where 'X' is a number.

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

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

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

      afterwhich the link should be dropped. If you want the link to

      stayup 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.

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

      DNS

      Pleaseenter the IP address of your ISP's primary DNS server.

      Ifyour ISP claims that 'the server will provide dynamic DNS addresses',

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

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

      doingand not modify your DNS setup.

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

      PASSWord

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

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

      USERCTRL

      Pleaseenter 'yes' (three letters, lower-case.) if you want to allow

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

      FIREWALLING

      Pleasechoose the firewall rules to use. Note that these rules are

      verybasic. You are strongly encouraged to use a more sophisticated

      firewallsetup; however, these will provide basic security. If you

      arerunning any servers on your machine, you must choose 'NONE' and

      setup firewalling yourself. Otherwise, the firewall rules will deny

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

      areusing SSH, the rules will block outgoing SSH connections which

      allocatea privileged source port.

      Thefirewall choices are:

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

      forensuring the security of your machine. You are STRONGLY

      recommendedto use some kind of firewall rules.

      1- STANDALONE: Appropriate for a basic stand-alone web-surfingworkstation

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

      fora LAN

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

      Startthis connection at boot time

      Doyou want to start this connection at boot time?

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

      **Summary of what you entered **

      EthernetInterface: eth0

      Username: xy170638010214

      Activate-on-demand:No

      DNSaddresses: Supplied by ISP's server

      Firewalling:NONE

      UserControl: yes

      Acceptthese 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

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

      (Butfirst 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'

      tobring it down.

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

      tosee the link status.

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

      [root@localhost~]# pppoe-status ---------------查看PPPOE状态

      2.设置无线上网

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

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

        

          用root直接          yumlocalinstall --nogpgcheckhttp://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm

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

            之后直接yuminstall kmod-wl

            最后reboot。

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

          

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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表