Bug 8040
Summary: | chown will not work on some account names | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | Richard Fairthorne <ebonyrun> |
Component: | fileutils | Assignee: | Bernhard Rosenkraenzer <bero> |
Status: | CLOSED NOTABUG | QA Contact: | |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 6.1 | ||
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2000-01-17 13:54:37 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Richard Fairthorne
1999-12-29 07:05:22 UTC
It's not a bug, it's POSIX compliance. You're not supposed to use a . in usernames. chown toecheese.com blah is equivalent to chown toecheese file chgrp com file If you absolutely need to use a . in usernames, you can work around this by using the User ID instead of the name, for example chown `id toecheese.com` file Sorry, `id -u toecheese.com` of course. |