搜索资源列表
shellccc
- 系统启动过程中内核(/unix,/vmunix,/boot/zImage等)将加载至内存直到系统关机,在启动 过程中,init将扫描/etc/inittab,在此文件中将列出可用的终端及其属性,一旦找到活动 的终端,getty(mingetty,LINUX)会给出login提示符和口令,确认完成后将启动相应的 shell(/etc/passwd文件中用户的SHELL域)-boot process kernel (/ unix, / vmunix, / boot / zImage) to be l
unix
- 模拟unix操作系统中的文件系统功能,在终端界面上用户可以象unix的shell命令一样输入一些命令,如输入ls 显示文件目录,chmod改变文件权限,chown改变文件拥有者,chgrp改变文件所属组,chnam改变文件名,pwd显示当前目录,cd改变当前目录,mkdir创建目录,rmdir删除目录,mk创建文件 ,cp文件拷贝,rm删除文件,cat显示文件内容,login切换用户,passwd修改用户口令 等功能。在后台,要实现混合索引式文件结构,包括用空闲结点号栈管理空闲结点和成组链接发管
work
- 某大学的unix模拟实验试题要求,及样例源码,实现核心的数据结构和算法,只需在此基础上调用已编好的节点操作函数实现如passwd\\chmod等命令
Unix_shell
- 实现功能(以下命令全部了小写) ls 显示文件目录 chmod 改变文件权限 chown 改变文件拥有者 chgrp 改变文件所属组 pwd 显示当前目录 cd 改变当前目录 mkdir 创建子目录 rmdir 删除子目录 mv 改变文件名 cp 文件拷贝 rm 文件删除 ln 建立文件联接 cat 连接显示文件内容 passwd 修改用户口令
Change_passwd
- 在QT4.5开发环境中编写的一个修改密码程序,适用于修改密码功能。-QT4.5 development environment in the preparation of a modified password procedures, apply to modify the password function.
LinuxYonghuanquan
- Linux安全问题的详细解答,关于/etc/passwd的具体配置问题。-Linux security issues in detail, on the/etc/passwd specific configuration issues.
5examplesofLinux-c
- 简单的字符设备驱动程序mydriver.c、用mmap()来读取/etc/passwd 文件内容、mutex的使用实例、condition virable的使用实例、semaphore的使用实例-A simple character device driver mydriver.c, using mmap () to read/etc/passwd file content, mutex the use of examples, condition virable the use of exam
Linux
- 在Linux系统的/etc目录下有这样一个文件passwd,该文件里包含系统中所有用户信息的记录,记录里包含每个用户的如下信息:用户名、密码、用户ID、组ID、用户全名、用户主目录和用户登录所用的shell。请设计一个脚本(shell)程序能实现增加、删除、查找和显示特定用户信息的功能。你们可以通过创建一些UNIX/LINUX shell 脚本文件来满足以上需求。-In the Linux system,/etc directory there is such a file passwd, th
LINUX
- 写一个脚本文件checkuser,该脚本运行时带一个用户名作为参数,具体要求如下: 1)如果命令行格式不符合要求,应有错误提示信息; 2)在/etc/passwd文件中查找是否有该用户, 如有,则输出“Found <user> in the /etc/passwd file.” 否则,输出“No such <user> on our system” -Write a scr ipt file checkuser, the scr ipt run-ti
pp
- Unix课程作业。 使用fork(), exec(), dup2(), pipe() ,open()系统调用完成与下列shell命令等价的功能。 grep –v usr < /etc/passwd | wc –l > result.txt -An assignment in UNIX course. Using fork(), exec(), dup2(), pipe(), open() system calls to do the same function of
linux-super_linker
- 本文档提供最全的linux技术文档链接,附带下载用户名密码等-this pdf provide full of linux techno-data super linker ,and provide user name and passwd
unixpasswd
- 用VC实现unix口令加密过程 vc6.0工程-unix passwd in windows
tinylogin-1.4
- tinylogin同busybox一样,用来替换通常PC版Linux的login,passwd,getty等命令。使用tinylogin的一个突出的优点就是可以节省存储空间。-tinylogin with busybox to replace the usual PC version of the Linux login, the passwd, getty command. Tinylogin a prominent advantage is that you can save storage
pexpect-2.3
- PYTHON的expect模块,类似TCL 的expect。-Pexpect is a Pure Python Expect-like module Pexpect makes Python a better tool for controlling other applications. Pexpect is a pure Python module for spawning child applications controlling them and respo
LINUX_studentManage
- 程序设置了三个级别的帐户: 一 超级管理员帐户 :ID:admin passwd:admin 拥有对老师学生的所有操作。 二 老师帐户:帐号密码由文件读取,修改删除由管理员控制。拥有对学生的修改成绩 录入成绩, 修改学生的成绩。查看统计成绩信息。修改更新自己的信息。 三 学生帐户 :对自己的信息的更新修改! 查看自己的成绩信息! 管理员账号密码静态3次错误输出会推出系统 教师账号密码由管
chpasswd
- This rather complex: if user is not found in /etc/shadow, we try to find & change his passwd in /etc/passwd / for Linux. -This is rather complex: if user is not found in /etc/shadow, we try to find & change his passwd in /etc/passwd / for Linux.
svr-auth
- This file (auth.c) handles authentication requests, passing it to the particular type (auth-passwd, auth-pubkey).
update_passwd
- update_passwd is a common function for passwd and chpasswd applets Source Code for Linux.
passwd
- password manager Source Code for Linux.
new_shadow.tar
- 嵌入式linux系统中的用户口令一般使用了shadow机制,存放在/etc/shadow中的是经过哈希或加密后的口令值。为了方便生成或修改口令,参考busybox中的loginutils/passwd.c等文件,写了此程序。-A little program to generated encrypted password, using crypt().