Welcome![Sign In][Sign Up]
Location:
Search - linux mkdir a

Search list

[Linux-Unixos

Description: 操作系统接口:兼容Unix 和Linux 命令接口。 为Windows 操作系统建立一个兼容Unix 命令的命令接口; 实现命令包括ls,cat,cp,rm,mv,ren,mkdir,rmdir,cd,help,exit命令的内容与详细格式请查阅unix 命令手册; 可以字符形式接收命令,执行命令,然后显示命令执行结果。-Operating system interface: compatible with Unix and Linux command interface. For the Windows operating system to build a Unix-compatible command interface realize the command, including ls, cat, cp, rm, mv, ren, mkdir, rmdir, cd, help, exit the command of the content and details of the format please refer to unix command manual can characters in the form of receiving orders, the implementation of the command, and then show the results of command execution.
Platform: | Size: 25600 | Author: xiner | Hits:

[Other Embeded programgpio-test

Description: 1、将makefile中的 CROSS =/usr/local/arm/2.95.3/bin/arm-linux- CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include/linux CFLAGS+=-I/usr/local/arm/2.95.3/arm-linux/include 路径改为你宿主机上的。 2、#make,来编译驱动模块。 3、#export PATH=$PATH:/usr/local/arm/2.95.3/bin //取决于你宿主机上的交叉编译工具路径 #arm-linux-gcc -o gpio_test gpio_test.c //编译应用程序 最终在你的当前文件夹下会生成gpiodrv.o与gpio_test两个文件。 4、#mkdir /tmp/1 5、通过ftp的方法,把gpio_test与gpiodrv.o文件下载到你的开发板上的/tmp/1目录中。 6、#mknod /dev/gpio c 220 0 //创建文件节点 #insmod gpiodrv.o #chmod +x gpio_test #./gpio_test 然后,就可以看到四个LED灯在闪烁了。:)-1, the makefile in the CROSS =/usr/local/arm/2.95.3/bin/arm-linux- CFLAGS+ =- I/usr/local/src/2.4.18-rmk7/include CFLAGS+ =- I/usr/local/src/2.4.18-rmk7/include/linux CFLAGS+ =- I/usr/local/arm/2.95.3/arm-linux/include changed the path on your host. 2,# make, to compile driver modules. 3,# export PATH = $ PATH:/usr/local/arm/2.95.3/bin// depends on your host on the path of the cross compiler tool# arm-linux-gcc-o gpio_test gpio_test.c// compile the application procedures for the ultimate in your current folder will be generated under the two documents gpiodrv.o and gpio_test. 4,# mkdir/tmp/1 5, through the ftp way to gpiodrv.o File Download gpio_test with the development of your board/tmp/1 directory. 6,# mknod/dev/gpio c 220 0// create a file node# insmod gpiodrv.o# chmod+ x gpio_test#./Gpio_test then four LED lights can be seen in the flicker of. :)
Platform: | Size: 9216 | Author: 马工 | Hits:

[Otherlinuxcmd

Description: 一个C++编写的LINUX SHELL,支持的命令有cat cd rm mkdir ls pwd pid mv cp,"exit"命令用于退出- The program is to execute some common commands of Linux,available commands are: cat cd rm mkdir ls pwd pid mv cp,same function as the standard linux shell command.There’s also a command “exit” to let the user exit the program.The programe also shows how long did the last executed command take(in second).
Platform: | Size: 1024 | Author: 王跃辉 | Hits:

[Linux-Unixmkdir

Description: 在用户空间中,建立目录所用的API为mkdir().它在内核中的系统调用入口是sys_mkdir()-tell you the how to "mkdir"
Platform: | Size: 7168 | Author: nizhijun | Hits:

[Linux-Unixmkdir

Description: 在Linux系统中,最常用的命令就是mkdir,他的功能就相当于XP系统中,新建一个文件夹-In Linux systems, the most commonly used command is mkdir, his function is equivalent to XP, create a new folder
Platform: | Size: 2048 | Author: 查善君 | Hits:

[androidandroid4.0

Description: 提取出最全的Android4.0 API 的源代码,也就是android.jar源代码,这样在Eclipse关联到该源代码,就可以在项目中查看Android API 的实现了,希望对学习Android开发的人有帮助 下载教程。确保你已经安装了git jdk python等,操作系统环境为Linux。 1.创建bin目录,并加入到PATH $ mkdir ~/bin $ PATH=~/bin:$PATH 2.下载repo到刚刚创建的bin目录,并设置权限为可执行。 $ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo $ chmod a+x ~/bin/repo 3.创建Android源代码存放目录并进入到该目录 $ mkdir Android-4.0.0_r1 $ cd Android-4.0.0_r1 4.初始化Android4.0.1的Git库 $ repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1 5.最后执行开始同步下载 $ repo sync-failed to translate
Platform: | Size: 11740160 | Author: 小邓 | Hits:

[Otherfilesystem

Description: 模拟实现linux下的文件系统,能实现创建,删除,读,写,打开,关闭文件,还能使用mkdir创建目录等-Simulation under linux file system, can achieve to create, delete, read, write, open, close the file, but also to create a directory using the mkdir, etc.
Platform: | Size: 240640 | Author: 徐阳 | Hits:

[Linux-Unixcode

Description: 一个linux下简单的shell 支持cd,mkdir echo 重定向等操作-A simple shell supported under linux cd, mkdir echo redirection operator
Platform: | Size: 33792 | Author: 谢鸣元 | Hits:

[Otheros_file

Description: 操作系统课设作业。在磁盘空间模拟一个linux文件系统,并提供基本的文件操作命令(如mk, cp, mkdir, rmdir, cd, ls, cat, chmod, chown, chgrp, chnam等)。文件系统的实现采用混合索引式文件结构,包括使用空闲节点号栈管理空闲节点和成组链接管理空闲盘块。(Simulate a Linux file system in disk space and provide basic file operation commands (such as MK, CP, MKDIR, rmdir, CD, LS, cat, Chmod, chown, chgrp, chnam, etc.). The implementation of file system is based on hybrid index file structure, including using idle node stack to manage idle nodes and group links to manage idle disk blocks.)
Platform: | Size: 375808 | Author: Greenyy | Hits:

CodeBus www.codebus.net