教你如何关闭linux系统中的selinux。
1、快速关闭SElinux,使用如下命令就可以:
/usr/sbin/setenforce 1 立刻启用 SELINUX
2、加到系统默认启动里面
3、可以编辑配置文件达到同样的目的
set SELINUX=disabled
在Debian、Gentoo等发行版中,使用zh_CN.UTF-8的Locale时,自动挂载的FAT分区上的中文文件名显示为乱码。
以下是修正此问题的方法:
在Gnome的菜单中打开GNOME配置编辑器:应用程序->系统工具->配置编辑器->
沿路径找到如下位置:/system/storage/default_options/vfat。
双击右边的mount_options,在弹出的“编辑键”窗口中点“添加”,新列表值为“utf8”。
确定,下次挂载时FAT分区的中文就正常了。
有关 linux c++ makefile 的使用方法,有需要的朋友可以看看。
一、c++编程中一般把文件分为三种,xx.h、xx.cpp、 main.cpp;linux环境下我们可以使用make工具进行编译,生成可执行文件之后便可以使用了。
这里写一个helloworld,分享一下,共同学习交流。
hello.h文件内容如下:
#ifndef hell_h
#define hell_h
class HelloWorld()
{
public :
HelloWorld();
~HelloWorld();
};
#endif
helloworld.cpp文件内容如下:
#include<iostream>
#include "hello.h"
using namespace std;
HelloWorld::HelloWorld()
{
cout<<"HelloWorld constr"
}
HelloWorld::~HelloWorld()
{
cout<<"析构"<<endl;
}
main.cpp文件内容如下:
#include<iostream>
#include "hello.h"
int main()
{
HelloWorld h;
return 0;
}
下面是 makefile文件的内容,也是最重要的。
g++ -c helloworld.o main.o -o dest
helloworld.o helloworld.cpp hello.h
g++ -c helloworld.cpp -o helloworld.o
main.o:main.cpp hello.h
g++ -c main.cpp main.o
然后在linux终端输入命令make makefile这可以得到dest文件;
然后执行./dest显示打印两行数据,分别来自HelloWorld类的构造函数和析构函数。