<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>永久免费资源网 - linux学习</title>
    <link>https://mianfeiziyuan.com/forum-70-1.html</link>
    <description>Latest 20 threads of linux学习</description>
    <copyright>Copyright(C) 永久免费资源网</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 06 May 2026 12:07:00 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://mianfeiziyuan.com/static/image/common/logo_88_31.gif</url>
      <title>永久免费资源网</title>
      <link>https://mianfeiziyuan.com/</link>
    </image>
    <item>
      <title>CentOS6在使用yum install 时提示镜像源路径不存在的解决办法</title>
      <link>https://mianfeiziyuan.com/thread-6644-1-1.html</link>
      <description><![CDATA[CentOS6.9的版本在使用

yum install XXX 的时候

安装时提示：PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found“

Loading mirror speeds from cached hostfile

Nothing to do

也就是找不到镜像源，所以先通过



以上的命令更换为163的数据源 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Sun, 23 Jan 2022 02:33:11 +0000</pubDate>
    </item>
    <item>
      <title>寓教于乐！一款游戏让你成为 Vim 高手</title>
      <link>https://mianfeiziyuan.com/thread-5470-1-1.html</link>
      <description><![CDATA[我们都知道，Vim 是 Linux 下一种非常重要的文本编辑器，我们可以用它来看代码、改代码，很多高手直接将 Vim 打造成一款强大的 IDE 用来写代码。

但是，对于新手而言，Vim 相对于其它编辑器而言，更难入门。Vim 是无图形界面的编辑器，一切操作全靠指令，而且指令又 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Wed, 22 May 2019 13:29:28 +0000</pubDate>
    </item>
    <item>
      <title>centos下设置linux开机自动联网</title>
      <link>https://mianfeiziyuan.com/thread-5145-1-1.html</link>
      <description><![CDATA[cd /etc/sysconfig/network-scripts

vi ifcfg-eth0

将ONBOOT=no 更改为　ONBOOT=yes

然后 service network restart

如果上述重启网络服务的命令不行，那么再重启系统就OK了！]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:38:04 +0000</pubDate>
    </item>
    <item>
      <title>Linux下双显卡切换</title>
      <link>https://mianfeiziyuan.com/thread-5144-1-1.html</link>
      <description><![CDATA[（1）查看显卡是否正常识别 
 
[root@localhost gyq]# lspci | grep VGA 
00:02.0 VGA compatible controller: Intel Corporation Device 0116 (rev 09) 
01:00.0 VGA compatible controller: ATI Technologies Inc Device 6741 
 
（2）查看内核版本 
[root@localhost  ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:37:21 +0000</pubDate>
    </item>
    <item>
      <title>记录一下man的用法</title>
      <link>https://mianfeiziyuan.com/thread-5143-1-1.html</link>
      <description><![CDATA[在linux中，man是非常重要的命令。

man是查询命令的用法的命令，后面可以直接跟要查询的命令，比如 man date，同时，还可以使用下面的方法。

man -f  date = whatis date，是完全匹配的man查询。类似于 is，查询结果是所有等于date命令的结果
man -k  date = apropos  ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:35:47 +0000</pubDate>
    </item>
    <item>
      <title>Grub Rescue问题</title>
      <link>https://mianfeiziyuan.com/thread-5142-1-1.html</link>
      <description><![CDATA[症状：
开机显示：GRUB loading

error:unknow filesystem

grub rescue&gt;

原因：
已经发现下面几种操作会导致这种问题：
1,想删除ubuntu，于是直接在windows下删除/格式化了ubuntu所在的分区。
2,调整磁盘，利用工具合并/分割/调整/删除分区，使磁盘分区数目发生了变化 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:34:51 +0000</pubDate>
    </item>
    <item>
      <title>Linux/Centos停止自动休眠</title>
      <link>https://mianfeiziyuan.com/thread-5141-1-1.html</link>
      <description><![CDATA[1. Problem
When monitor is unplugged from PC long time, or centos PC is not operated long time, PC will automatically hibernate. Then telnet, vnc or other applications will not be available

2. Solution:
Append following to \\etc\\X11\\xorg.conf
Sect]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:34:21 +0000</pubDate>
    </item>
    <item>
      <title>Linux查看硬件信息命令</title>
      <link>https://mianfeiziyuan.com/thread-5140-1-1.html</link>
      <description><![CDATA[CPU：

命令：cat /proc/cpuinfo

      参数：|grep \&quot;model name\&quot;  //查看CPU的型号

            |grep \&quot;physical id\&quot;  //查看CPU的个数，有几个不同physical id就有几个CPU
            | grep physical | uniq -c 
            

硬盘：

命令： fdisk –l  //查看 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:33:57 +0000</pubDate>
    </item>
    <item>
      <title>linux下安装flash player插件</title>
      <link>https://mianfeiziyuan.com/thread-5139-1-1.html</link>
      <description><![CDATA[为了娱乐，linux下面也是需要flash这个插件的。

首先，下载flash的tar.gz包，下载地址：http://get.adobe.com/cn/flashplayer/。解压后可以找到一个libflashplayer.so的文件
然后，在自己的文件夹下的 ./mozilla文件夹（隐藏的）下创建（或找到）一个plugins文件夹，将 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:32:57 +0000</pubDate>
    </item>
    <item>
      <title>linux学习的几个过程</title>
      <link>https://mianfeiziyuan.com/thread-5138-1-1.html</link>
      <description><![CDATA[linux学习的几个过程
1、Linux 基础
安装Linux操作系统
Linux文件系统
Linux常用命令
Linux启动过程详解
熟悉Linux服务能够独立安装Linux操作系统
能够熟练使用Linux系统的基本命令
认识Linux系统的常用服务安装Linux操作系统
Linux基本命令实践
设置Linux环境变量
定制 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:32:10 +0000</pubDate>
    </item>
    <item>
      <title>学习Linux的九条忠告</title>
      <link>https://mianfeiziyuan.com/thread-5137-1-1.html</link>
      <description><![CDATA[　　以下是网友王垠写的关于学习Linux的忠告。但只要稍加替换，它完全可以用来解决FF与IE，五笔与拼音，QQ与MSN，IBM与HP，甚至是SONY与任天堂粉丝之间的种种争端。


1. 不要当“传教士”

　　
　　很多人在讨论区不断的引起 \&quot;Linux vs. Windows\&quot; 之类的讨论，甚至争 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:31:50 +0000</pubDate>
    </item>
    <item>
      <title>重装windows后修复grub2引导</title>
      <link>https://mianfeiziyuan.com/thread-5136-1-1.html</link>
      <description><![CDATA[使用安装版的windows重装windows时会改写mbr，造成grub丢失，可以用grub4dos引导进入ubuntu后修复grub或用livecd启动后修复grub。

1、用grub4dos修复ubuntu

先下载最新版的grub4dos，下载地址http://sourceforge.net/projects/grub4dos/files/GRUB4DOS/，如果是xp系统 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:31:16 +0000</pubDate>
    </item>
    <item>
      <title>Linux下淘宝旺旺的安装方法</title>
      <link>https://mianfeiziyuan.com/thread-5135-1-1.html</link>
      <description><![CDATA[1、安装wine

2、从网上下载绿色版的淘宝旺旺。

3、到windows下copy一个simsun.ttc放
到 /home/xumin/.wine/drive_c/windows/fonts,这一步是解决旺旺的是“特别关
注”乱码的问题

4、复制需要的文件到你的wine的system32目录（默认是
~/.wine/drive_c/windows/system3 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:30:48 +0000</pubDate>
    </item>
    <item>
      <title>linux大于2T的磁盘使用GPT分区方式</title>
      <link>https://mianfeiziyuan.com/thread-5133-1-1.html</link>
      <description><![CDATA[一种由基于 Itanium 计算机中的可扩展固件接口 (EFI) 使用的磁盘分区架构。与主启动记录 (MBR) 分区方法相比，GPT 具有更多的优点，因为它允许每个磁盘有多达 128 个分区，支持高达 18 千兆兆字节的卷大小，允许将主磁盘分区表和备份磁盘分区表用于冗余，还支持唯一的磁 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:28:04 +0000</pubDate>
    </item>
    <item>
      <title>关闭centos中的SELinux</title>
      <link>https://mianfeiziyuan.com/thread-5132-1-1.html</link>
      <description><![CDATA[SELinux可以简单的理解为增加了安全性的linux系统，更多的理解，可以自行寻找答案，这里不再复述，下面是关闭SELinux的方法。

首先，使用getendorce或者sestatus命令查看当前selinux的状态，如果是非关闭的状态，就继续关闭它。

然后找到 /etc/selinux/config文件，如 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:27:44 +0000</pubDate>
    </item>
    <item>
      <title>CentOS安装Apache后其他机器无法访问的解决方法</title>
      <link>https://mianfeiziyuan.com/thread-5131-1-1.html</link>
      <description><![CDATA[设置好apache之后，/etc/init.d/httpd start 成功启动了Apache
但是局域网的另外一台机器却无法显示其页面。

netstat 看到 80 端口正在被监听，切换到X界面，本机也可以访问。

因为selinux已经关闭了，所以，可以肯定是iptables防火墙的问题

我自己的解决办法：

1、 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:27:23 +0000</pubDate>
    </item>
    <item>
      <title>您的PHP似乎没有安装运行WordPress必须的MySQL拓展的解决办法</title>
      <link>https://mianfeiziyuan.com/thread-5130-1-1.html</link>
      <description><![CDATA[配置好LAMP环境提示：“您的 PHP 似乎没有安装运行 WordPress 必须的 MySQL 拓展”的解决办法


刚刚自认为配置好了LAMP环境，安装个wordpress进行测试，却提示：您的 PHP 似乎没有安装运行 WordPress 必须的 MySQL 拓展。的错误。搜索了一下资料，大都是针对老版本的ex ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:26:59 +0000</pubDate>
    </item>
    <item>
      <title>WordPress需要访问您网页服务器的权限的解决办法</title>
      <link>https://mianfeiziyuan.com/thread-5129-1-1.html</link>
      <description><![CDATA[测试安装好的wordpress在线安装插件提示：“要执行请求的操作,WordPress 需要访问您网页服务器的权限。 请输入您的 FTP 登录”的解决办法


众所周知，wordpress可以在线更新及安装插件。

刚刚配置好了LAMP环境，并且安装wordpress成功，于是，想测试一下各种功能是否 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:25:17 +0000</pubDate>
    </item>
    <item>
      <title>CentOS 5.6安装LAMP(Apache2+PHP5+MySQL)</title>
      <link>https://mianfeiziyuan.com/thread-5128-1-1.html</link>
      <description><![CDATA[LAMP是Linux+apache+MySQL+PHP的缩写。本教程演示如何安装在一台CentOS 5.6与PHP5（mod_php）和MySQL数据库加Apache2 web服务器。
1.初步说明
在本教程中使用的主机名为server1.example.com，IP地址192.168.0.100。这些设置可能与你的设置不同，所以你必须在适当情况下 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:22:41 +0000</pubDate>
    </item>
    <item>
      <title>linux中mysql的一些基本操作</title>
      <link>https://mianfeiziyuan.com/thread-5127-1-1.html</link>
      <description><![CDATA[1、登陆mysql：

mysql -u root（不带密码）
mysql -u root -P（带密码）

2、设置mysql中的root密码

mysqladmin -u root pawwdord \'yourpassword\'

3、退出mysql

exit或quit

4、创建数据库

create database mianfeiziyuan;

5、显示当前的数据库

show databases;
 ...]]></description>
      <category>linux学习</category>
      <author>mianfeiziyuan</author>
      <pubDate>Mon, 20 May 2019 12:19:12 +0000</pubDate>
    </item>
  </channel>
</rss>