Forum Discussion
Kishore_51478
Nimbostratus
Nov 09, 2011unable to backup my UCS file
I have been trying to create a UCS file but i am getting an error message.
md5sum: /home/peter/192.168.10.112share: No such file or directory
Fatal: executing: md5sum /home/peter/\192.168.10.112share
Operation aborted.
/tmp/configsync.spec: Error creating package
WARNING:There are error(s) during saving.
Not everything was saved.
Be very careful when using this saved file!
Could you help me in solving this.
6 Replies
- Mike_Kahler_488Historic F5 AccountIt appears that you have a space in front of the "192.... This is causing md5sum to abort. There are several ways to fix this. If you don't need the file:
rm '/home/peter/ 192.168.10.112share'
If you want to keep the file, you can "mv" it
mv '/home/peter/ 192.168.10.112share' /home/peter/192.168.10.112share - Kishore_51478
Nimbostratus
this did not work as it says there is no such file or directory - nitass
Employee
is there any process e.g. background process which relates to that file/directory? - please check if the filesystem is full "df -k /home".
Regards
Kurt Knochner - Mike_Kahler_488Historic F5 AccountI feel certain there is a file in your home directory that contains some sort of non-printable character. It appears that the file contains an IP address followed by the word "share". You can try this:
find /home/peter -name \*share -ls
If the find command locates the file in question, look at the 1st field which is known as the inode number. You can remove the file using the inode number and the find command:
find /home/peter -inum -exec rm -i {} \;
Here is my example. I created a file in /home/admin with the touch command:
touch /home/admin/\ 192.168.10.112share
I get similar output when attempting to perform md5sum on the file:
md5sum 192.168.10.112share
md5sum: 192.168.10.112share: No such file or directory
Using the find command, I get the inode number. In this case 6250:
find /home/admin -name \*share -ls
6250 1 -rw------- 1 root root 0 Nov 10 07:39 /home/admin/\ 192.168.10.112share
Using the find command, I can remove this using the inode number:
find /home/admin -inum 6250 -exec rm -i {} \;
rm: remove regular empty file `/home/admin/ 192.168.10.112share'? y
If this doesn't work, I would open a case with F5 support as this is affecting the ability to create archives and config sync. - Kishore_51478
Nimbostratus
Thanks a lot Mike Kahler ...it worked.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects