码迷,mamicode.com
首页 >  
搜索关键字:ln ln -s ln -v    ( 1954个结果
linux用户管理基本命令
1,UID和GID用户分为:普通用户,根用户,系统用户一般普通用户只能在其家目录,系统临时目录或其他经过授权的目录中操作。id>500根用户:root用户,ID=0系统用户:系统运行时所需要的用户命令:id查看uidgidgroups查看所属组ls-ln组和用户用UID来表示。who/users/w查询当前..
分类:系统相关   时间:2015-01-19 19:15:26    阅读次数:232
ubuntu 14 配置FastDFS的一个小问题
安装FastDFS;./make.sh install的时候会出现ln:failed to create symbolic link `/usr/lib64/libfastcommon.so`: No such file or directory这个报错...
分类:系统相关   时间:2015-01-19 17:17:51    阅读次数:241
安装pip
1.先安装setuptools#python setup.py build#python setup.py install2.安装pip#python setup.py install如果python升级过,要添加软连接,否则还是会提示找不到pip命令#ln -s /usr/local/python...
分类:其他好文   时间:2015-01-19 12:30:45    阅读次数:108
Ubuntu搭建https步骤
Ubuntu搭建https步骤:#apt-getinstallapache2#apt-getinstallssl-cert#apt-getinstallopenssl开启SSL模块#a2enmodssl#ln-s/etc/apache2/sites-available/default-ssl/etc/apache2/sites-enabled/#serviceapache2restart访问:https://localhost
分类:Web程序   时间:2015-01-17 23:39:53    阅读次数:322
Ubuntu里Eclipse关联Jdk
Ubuntu里Eclipse关联Jdk1、在Eclipse安装目录创建jre 文件。2、ln -s jdk目录/bin bin输入上述命令,之后eclipse即可打开。
分类:系统相关   时间:2015-01-17 23:21:24    阅读次数:249
ubuntu 下mongodb安装
1.下载:mongodb.org/download2. 将下载的压缩文件加压到/usr/lib下3. 建立软链接ln -s /usr/lib/mongodb-linux-i686-2.6.7/bin/mongod /usr/bin/mongodln -s /usr/lib/mongodb-linux...
分类:数据库   时间:2015-01-16 16:20:05    阅读次数:254
linux so库生成(一)
Dear! 先贴个大众版,希望逐字理解,有益! $gcc -shared -Wl,-soname,libhello.so.1 -o libhello.so.1.0 hello.o 另外再建立两个符号连接: $ln -s libhello.so.1.0 libhello.so.1 $ln -s libhello.so.1 libhello.so 这样一个libhello的动态连接...
分类:系统相关   时间:2015-01-16 13:08:56    阅读次数:211
【转】ubuntu 12.04 /sbin/ldconfig.real: /usr/local/lib/*.so.8 不是符号连接 解决办法
原文网址:http://blog.csdn.net/shulianghe/article/details/21176059最近在ubuntu12.04下使用sudo apt-get install安装软件的时候最后总会报这种错误。建立硬连接即可解决:sudo ln -sf /usr/local/li...
分类:系统相关   时间:2015-01-15 15:44:53    阅读次数:233
LeetCode--Reorder List
Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes' values. For example, Given {1,2,3,4}, reorder it to ...
分类:其他好文   时间:2015-01-15 10:57:56    阅读次数:202
symlink在ln的过程中究竟占用了多少耗时
今天看到群里的童鞋们在讨论ln命令的使用,天花乱坠说到了symlink,有同学用估算的口气说symlink耗时很低的,肯定ln总耗时是symlink的好几百倍,他猜中了吗? 现在针对ln -s ~/install install来验证下strace -tt -T输出: 14:08:20.190334 execve("/bin/ln", ["ln", "-s", "/home/linxp/ins...
分类:其他好文   时间:2015-01-14 15:37:03    阅读次数:209
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!