码迷,mamicode.com
首页 >  
搜索关键字:链接文件 ln 硬链接 符号链接    ( 3508个结果
virtualbox 4.3.10 ubuntu 12.04 mount share folder bug
virtualbox 4.3.10 不能mount共享文件夹,这是一个bug,参考如下链接https://www.virtualbox.org/ticket/12879执行以下命令即可:sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAd...
分类:其他好文   时间:2014-07-22 23:07:55    阅读次数:334
ubuntu 安装Firefox 29.0
下载Firefox 29.0% cd ~/Downloads% sudo cp firefox-29.0.tar.bz2 /opt% cd /opt% sudo tar -xvjf firefox-29.0.tar.bz2然后% sudo ln -sf /opt/firefox/firefox /....
分类:其他好文   时间:2014-07-22 23:06:13    阅读次数:311
linux文件属性知识总结
linux文件属性可以使用ls-l命令查看。文件属性为以下1.文件类型:-,d,l,b,c,s等2.文件链接数#创建文件链接命令 ln[-s创建软连接]targetlink_name #默认创建硬链接3.文件读写执行属性4.文件属主和群5.文件大小ls-h #以友好方式显示文件大小6.文件时间属性#mtime(modificati..
分类:系统相关   时间:2014-05-03 01:55:59    阅读次数:504
[leetcode]Reorder List @ Python
原题地址:http://oj.leetcode.com/problems/reorder-list/题意:Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this...
分类:编程语言   时间:2014-05-01 15:37:03    阅读次数:441
寒江独钓:键盘的过滤 学习笔记
先来名词热身:一、符号链接:其实就是一个别名。可以用一个不同的名字来代表一个设备对象二、PDO:是物理设备对象,可以理解为是设备栈最下面的那个设备对象。函数介绍:内核中:ZwCreateFile是很重要的函数,不但可以打开文件,还可以打开设备对象。在应用程序中跟它对应的是CreateFile函数.....
分类:其他好文   时间:2014-05-01 09:24:55    阅读次数:315
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 ...
分类:其他好文   时间:2014-04-29 13:42:21    阅读次数:427
leetcode day5 -- Reorder List && Linked List Cycle II
1、 ?? 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...
分类:其他好文   时间:2014-04-29 13:16:21    阅读次数:250
inode-软链接与硬链接
一、inode是什么?理解inode,要从文件储存说起。文件储存在硬盘上,硬盘的最小存储单位叫做"扇区"(Sector)。每个扇区储存512字节(相当于0.5KB)。操作系统读取硬盘的时候,不会一个个扇区地读取,这样效率太低,而是一次性连续读取多个扇区,即一次性读取一个"块"(block)。这种由多...
分类:其他好文   时间:2014-04-29 11:27:46    阅读次数:303
3508条   上一页 1 ... 349 350 351
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!