mkdir: cannot create directory

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications mkdir: cannot create directory
# 1  
Old 11-02-2010
mkdir: cannot create directory

Hi, I have network mount on two servers.

One server I can create any directories without any issues, other server with the similar mount, I am not able to create directories starting with number!

Creation, name start with a number:
Code:
[user1@www1 shareddoc]$ mkdir 1212
mkdir: cannot create directory `1212': No such file or directory

Creation, name start with a letter:
Code:
[user1@www1 shareddoc]$ mkdir a1212
[user1@www1 shareddoc]$ rm a1212
rm: cannot remove `a1212': Is a directory

The directory created successfully!

Both servers similar user account and mounting methods are used. Any ideas?

Last edited by ./hari.sh; 11-02-2010 at 08:12 PM..
# 2  
Old 11-02-2010
Not sure I understood the issue (..)
Have you tried to see what command you were executing ( a fake, or an alias?)
check with what, which, whereis commands to see if it can explain...
# 3  
Old 11-02-2010
Thanks for reply vbe...
The results for all these WH questions were same.
# 4  
Old 11-03-2010
What OS(es) are you running ?
# 5  
Old 11-03-2010
RHEL 4
# 6  
Old 11-03-2010
Then what says:
Code:
strace -f mkdir 1212

?

Last edited by jlliagre; 11-03-2010 at 02:04 PM..
This User Gave Thanks to jlliagre For This Post:
# 7  
Old 11-03-2010
Perhaps an alias? have you tried:

Code:
\mkdir 1212

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to create a long list of directories with mkdir?

Hi... Thanks to read this... I want to use mkdir to create many directories listed in a text file, let's say. How do I do this? Sorry for this maybe very basic question :) (13 Replies)
Discussion started by: setub
13 Replies

2. Shell Programming and Scripting

Copy of "How to create a long list of directories with mkdir?"

To bakunin and corona688: My result when text in file is ms_ww_546 ms_rrL_99999 ms_nnn_67_756675 is https://www.unix.com/C:\Users\Fejoz\Desktop\ttt.jpg I hope you can see the picture. There is like a "whitespace character" after 2 of the 3 created directories. ---------- Post... (0 Replies)
Discussion started by: setub
0 Replies

3. Shell Programming and Scripting

List files with date, create directory, move to the created directory

Hi all, i have a folder, with tons of files containing as following, on /my/folder/jobs/ some_name_2016-01-17-22-38-58_some name_0_0.zip.done some_name_2016-01-17-22-40-30_some name_0_0.zip.done some_name_2016-01-17-22-48-50_some name_0_0.zip.done and these can be lots of similar files,... (6 Replies)
Discussion started by: charli1
6 Replies

4. UNIX for Dummies Questions & Answers

Mkdir a/b/c # where a/b does not exists. is it possible to create it ?

Is is possible to create the directories in following manner. for example my home dir is empty and i want to create dir a/b/c mkdir a/b/c # where a/b does not exists. (5 Replies)
Discussion started by: anandgodse
5 Replies

5. Red Hat

Mkdir: cannot create directory `/home/phpmy/html': Permission denied centos

for incompatibility installation problems, I've decided to reinstall Centos 6.3 as can be seem from the df output, I've partitioned both / and and /home directories $ df -h Filesystem Size Used Avail Use% Mounted on /dev/sda8 12G 5.3G 6.5G 45% / tmpfs ... (2 Replies)
Discussion started by: jediwannabe
2 Replies

6. Shell Programming and Scripting

mkdir home directory

Is there a way to create a directory in home directory through a bash script? And if yes then the files we want to put in there have to be put by the time is created in the bash script? (3 Replies)
Discussion started by: vlm
3 Replies

7. UNIX for Dummies Questions & Answers

mkdir: cannot create directory `/builds/somedir/': Permission denied

Hi, I am trying to run a shell script which contains an mkdir command as part of the execution. The script fails with the following error: mkdir: cannot create directory `/builds/somedir/': Permission denied The user running the script is 'harry' and belongs to group 'school'.... (5 Replies)
Discussion started by: Technext
5 Replies

8. Shell Programming and Scripting

[Solved] how to create multiple directory in one mkdir command

Hi, Unix Gurus, - I have a simple question, I need create multiple directory. I use mkdir {dir1, dir2, dir3) I got one directory as {dir1, dir2, dir3} I searched @ google, I got answer as above code.:wall::confused: Anybody has any idea Thanks in advance ---------- Post updated... (3 Replies)
Discussion started by: ken002
3 Replies

9. Homework & Coursework Questions

Create script to add user and create directory

first off let me introduce myself. My name is Eric and I am new to linux, I am taking an advanced linux administration class and we are tasked with creating a script to add new users that anyone can run, has to check for the existence of a directory. if the directory does not exist then it has... (12 Replies)
Discussion started by: pbhound
12 Replies
Login or Register to Ask a Question