D******n 发帖数: 2836 | 1 是后者。不是很懂这个nsswitch.conf,简单来说有什么办法看到所有用户名? |
|
|
L*1 发帖数: 11537 | 3 传统的是用NIS -- 不存在local机器上,所以任何人都看不到。
另外,出于安全考虑,也不会给出所有用户的信息给你的。 |
|
f*********e 发帖数: 8453 | 4 可能我没理解对。你说的"禁"是指装完了没有缺省root用户?我记得必须用passwd
root去激活。记不大清了。有一阵子没弄了。 |
|
z**r 发帖数: 17771 | 5 从来没禁过啊,只需要sudo passwd root一下就可以了 |
|
m**k 发帖数: 290 | 6 可以google 一下怎么 set empty password
或者mount之后chroot, 再passwd |
|
s*******n 发帖数: 730 | 7 sudo su -l
or
sudo passwd |
|
j*****I 发帖数: 2626 | 8 看"hosts"
如果加ldap的话,就会等上那么两分钟,因为我没有ldap service. 就好像把ldap放在
files前面一样。 /etc/hosts 里面hostname是加好的。如果我只留files,一点没有问
题。
下面贴的/etc/nsswitch.conf
passwd: files
shadow: files
group: files
hosts: files ldap
bootparams: nisplus [NOTFOUND=return] files
ethers: files
netmasks: files
networks: files
protocols: files
rpc: files
services: files
netgroup: nisplus
publickey: nisplus
automount: files nisplus
aliases: files nisplus |
|
d*b 发帖数: 21830 | 9 没用过就别"好像“了,F18我老已经用了一周多了,没有任何特别的毛病,基本就是
f17的小改而已,该有的致命Bug都还在。比如:
ibus中文输入经常延后,有时候keyboard完全没反应,很多人(我说的是那些圈内的煞
笔们)以为这是video驱动或者gnome的问题。这其实是ibus的毛病,又比如,SCIM开机
后输入passwd界面不能自动切入英文输入的Bug也在。你screen unlock的时候,总得猜
测现在究竟是输入中文还是英文。
不过F18还是修改了不少bug的,比如gnome网络代理设置里的socks现在总算work了,你
不用改单个软件,直接改gnome control center network就可以了。但总体上说f18还
是很失望的,比如那个clone mac的control panel,我们还要等多少年后里面才会把所
有必须的control button都加到panel里面而不是用户自己去figure out呢?
linux还有个毛病是很多package的改动都是随心所欲,这个比如用网络从f17更新,以
前老的package都不work了,某人写了个叫fedu... 阅读全帖 |
|
d******i 发帖数: 7160 | 10 输入重定向(getline)
getline 函数用来从标准输入,例如管道或者文件来读入数据,而不是
从正被处理的当前文件。getline 取得输入的下一行,并更新NF、NR
和FNR等内置变量的值。如果getline找到记录则返回1,达到EOF(文
件结束)则返回0。如果有错误则返回-1。
举例1:
$ nawk 'BEGIN{"date"|getline d;print d}' datafile
2005年05月06日 星期五 15时05分41秒 CST
解释:执行date命令,然后把输出从管道送到getline,并赋给自
定义变量d,然后打印d。
举例2:
$nawk 'BEGIN{while("ls"|getline) print}'
awk.sc2
datafile
datafile2
employees
employees2
lab5.data
names
passwd
解释:将把ls的输出送到getline。对于每次循环,getline都从
ls读取一个以上输出,然后打印到屏幕上
好像getline不认得,运行不了。 |
|
c*****m 发帖数: 1160 | 11 首先,有一个server1, 5个用户登录上去后都可以读/写 /home/pub 目录,权限777。
然后同一局域网内加了一个 server2,拷贝 /etc/passwd , group 等过去,5个用户的
uid完全相同.
任务:在 server2上面 mount server1的 /home/pub,这样在两台server上面都可以访
问同一个 /home/pub 目录,文件共享。
环境:两个都是 ubuntu 12.04 LTS server.
尝试1: NFS (native linux network file share) 。
不成功,因为整个 /home 都是加密的 (ecryptfs),而NFS不支持 ecryptfs (I learnt
it the hard way)
尝试2: 在 server1 里用 samba share 这个目录,在server 2 mount起来。
读写权限有问题。在server 2 用 user,credentials=/root/.smbcredentials 的方式
来放 用户名 test 密码 test 。mount 成功,读这个... 阅读全帖 |
|
c*****m 发帖数: 1160 | 12 Windows client, Ubuntu 12.4 server.
本用户在/etc/passwd里面设置的是 /bin/bash
在server上直接登录,或者在Windows client上用no machine登录,然后打开
terminal,都很正常,用到bash,而且在 .bashrc里面的设置都能应用(提示符是有颜
色的,且显示时间)。
在Windows client用putty登录,发现它没有执行 .bashrc里面的设置。(提示符没有
颜色)。这时候执行
$echo $SHELL
得到的还是 /bin/bash
如果我执行一下
/bin/bash
那么 .bashrc里面的设置正式跑起来了(提示符有颜色);这时候再 $echo $SHELL,
还是相同的 /bin/bash (这时候还是在putty remote connection中)
所以现在的问题是: 用 putty初登录时是什么shell?如果确实是bash,为什么没有执
行.bashrc,而要跑 /bin/bash 之后才执行? |
|
n*****t 发帖数: 22014 | 13 用优盘 boot:
# mount /dev/sda1 /mnt; chroot /mnt; passwd ..... |
|
S*A 发帖数: 7142 | 14 You can use single user mode to reset the root password.
Then you can debug the issue, with network cable disconnected.
You can verify if your passwd file has been changed.
Debug the login process to see which it reject the user etc.
It is possible your account get hacked. |
|
on 发帖数: 199 | 15 【 以下文字转载自 Windows 讨论区 】
发信人: on (一瞬), 信区: Windows
标 题: Outlook .pst file access
发信站: BBS 未名空间站 (Mon Oct 9 23:00:04 2006)
I have some personal emails from my company; i saved them in a folder in a .
pst file. When i get home to read it, told the access is denied. i guess
this is because i don't use my corporate email login / passwd? if so, how
can i get around this? |
|
H*******e 发帖数: 37 | 16 【 以下文字转载自 Java 讨论区 】
发信人: HelloHere (Hello Here), 信区: Java
标 题: how to login mitbbs with java code
发信站: BBS 未名空间站 (Sat Sep 22 20:08:25 2007)
Any one has idea how to deal with the passwd?
I passed my password as text, it always says not right. Do I need some
encoding. Or what encoding is used in mitbbs?
This is just for exercise.
/*
{
target="_top">
账号 | |
|
p****s 发帖数: 32405 | 17 在一台OS为XP的机器上架了一个zftpserver (ip设成192.168.0.4),
在远端有个嵌入式系统当client,OS 是linux.
从client ping server 没问题,但是尝试ftp的时候不成功, 也没说哪错,就是hang on
在下面这了:
Connecting to 192.168.0.4[192.168.0.4]:21...
也没别的消息蹦出,过了一会就time out了, error msg就这么一句
Unable to connect to remote host (192.168.0.4): Connection timed out
不大明白问题出在哪,从server端看log, 可以看到远程那头client确实有尝试登录,
正常的步骤是接下来server该问username和passwd, 但是这步没到,就持续
sending welcome message僵在这,持续了几次后time out.
原因会是啥呢? 防火墙什么乱七八糟的玩意我都关掉了, 用于登录ftp的用户名和密码
也确保无误。
有一个怀疑的地方是,我ping server的时间 |
|
T********i 发帖数: 2416 | 18 再吐糟一下,我要的login module,就是简单的user/passwd加上这种cookie的支持,
基本没找到现成的轮子可用。
全。 |
|
n******7 发帖数: 12463 | 19 试了,不行
这整个过程是 ssh 登录 -> 没有/home/nowhere7 -> 跳到 / -> cd ../pub/incoming
/silent hill/
最后的目录是个group folder,一组人都可以写
ssh怎么也不可能通过check最后这个folder来验证登录吧
除非让admin这么设
好像这种情况只能用sshpass了?都说这个太不安全了
如果能让passwd加密的话,跟手输密码的安全度就相当了吧? |
|
sg 发帖数: 83 | 20 $ script shit_to_send_to_national_inquirer
Script started, file is shit_to_send_to_national_inquirer
$ telnet whitehouse.gov
Trying 198.137.241.30...
Connected to whitehouse.gov.
Escape character is '^]'.
# id /* fEAR! */
uid=0(root) gid=1 (system)
# grep clinton /etc/passwd
bclinton:x:100:10:Bill Clinton:/home/bclinton:/bin/sh
hclinton:x:101:10:Hillary Clinton:/home/hclinton:/bin/sh
# cd /home/bclinton
# ls -la
MONICA-1.GIF
JFLOWERS.JPG |
|
f***s 发帖数: 1 | 21 I have lost the passwd of my mail box on 263:((
can I find it back? there are lots of importants mail a
wu~wu~ |
|
v*d 发帖数: 177 | 22 I am one server administrator. Sb changed the passwd for the administrator
when I was out and forgot the lock the computer! Now I cannot logon, except
reinstalling the system ( i hate tha, since this is a server), how can I do?
and also I maybe cannot find the recovery dics which is made when installing
long time ago!
GOD help me!
THX |
|
s***e 发帖数: 911 | 23 以下是相关信息. 请高手指点怎么才能干净彻底的解决这个被侵入的机器.
The attack discovered yesterday, Jan. 30.
login: co
System: IRIX 6.5
Connected from: ACA44A79.ipt.aol.com
I logged in as root and used su co to log in as co. I did whoami to find
that co is root.
co has entry in /etc/passwd .
This file was modified on Jan. 30, about one minute after login.
No entry or modification in /etc/shadow .
The system manager application on IRIX gave the following information on
the user:
login: co
real name: PR
home directory: /tmp
g |
|
d***y 发帖数: 45 | 24 发现没有几个系统用shadow的,怎么回事?
passwd文件倒是哪个机子都有! |
|
d***y 发帖数: 45 | 25 有好多系统里都有这个文件而没有shadow文件. |
|
l*******e 发帖数: 31 | 26 it's not your own computer,right? |
|
w*y 发帖数: 47 | 27 It is my office pc for my use only.
But the department is very absurd, they do not let us to be admistrator.
So, I can not install software by myself.Only need them to install.
You know we bring some software from
China, but It is not orginal version. I can not let department staff to install
it on my computer. |
|
l*******e 发帖数: 31 | 28 You'd better not install unofficial software to office computer
hehe |
|
a**s 发帖数: 61 | 29 a softwre called revealer |
|
g*******a 发帖数: 1383 | 30 great help, this is the thing i was looking for
BUT it doesn't work under XP
anything works under XP? seems noone figured it out yet |
|
a**s 发帖数: 61 | 31 it works well for my XP.
btw, the original status is deactivated after the program runs. |
|
g*******a 发帖数: 1383 | 32 你用的是PASSWORD REVEALER吧
他们的网页都说XP不能用啊?还是你用的其他什么REVEALER
还有第二句话没看懂,需要调整SETTING么? |
|
a**s 发帖数: 61 | 33 是的。
可是我用得很好啊
程序运行后默认得状态势不显示密码。在任务栏上的图标有禁用标志。
点击就可以激活了。
看密码的时候,有时需要在文本框内点击一下。 |
|
|
x***n 发帖数: 55 | 35 a software named pwshow.exe works under XP. |
|
b******d 发帖数: 28 | 36 【 以下文字转载自 Linux 讨论区 】
【 原文由 Bluewind 所发表 】
Rehdat linux 7.1. 我用这台机器做为家里LAN的server, 所以提供很多service,
包括http, ssh, ftp, dhcp, sendmail, samba, lpd。当初安装配置花了老多时间,
而且至今已经用了两年的时间,机器上有很多文件要保留,实在不想重新装系统,大家帮
忙
看看对方(罗马尼亚人)怎么上来的,可不可以把漏洞补上。
前天晚上关机的时候,突然发现系统说/var device is busy, 我当时还以为
有人通过http或ftp正挂在我的机器上,所以也没在意。但昨天中午我开机后不久,就
收到了一个从yahoo退回来的email. 该email是hacker的script从我机器上自动发出
的,包含了passwd, shado和cpu_info等文件内容。但是hacker的email box:
s*********[email protected] 满了,所以信被退回给我,不然我到现在还不知道自己的机器
已经被黑了。然后我发现root上一次登录的时间变成了Oct. |
|