糟糕鲜花

文章
9
资源
0
加入时间
3年0月21天

NFS4 mount

sudo mount -o vers=4,tcp -t nfs4  128.224.166.113:/ tmp/buildarea1 *(async,rw,insecure,insecure_locks,no_root_squash,fsid=1)这里的fsid=1在nfs文件系统里再mount nfs是必须要的/nfs  *(rw,sync,no_root_squash,no_subt...

C++ 直接cout指针名的含义?

首先看下面这个代码实例:#include using namespace std;int main(){ char *str = "this is a test"; cout << "str=" << str << endl; cout << "*str=" << *str << endl; cout << "&str" &l