Ticket #37 (closed defect: fixed)
Getting permission denied error on Multi-User Acoustic Model Creation Script
Reported by: | kmaclean | Owned by: | kmaclean |
---|---|---|---|
Priority: | minor | Milestone: | Unassigned |
Component: | Scripts | Version: | 0.1-alpha |
Keywords: | Cc: |
Description
Step 7 - Fixing the Silence Model
============================================================== cp: cannot create regular file `./interim_files/hmm4/./.svn/entries': Permission denied cp: cannot create regular file `./interim_files/hmm4/./.svn/text-base/macros.svn-base': Permission denied cp: cannot create regular file `./interim_files/hmm4/./.svn/text-base/hmmdefs.svn-base': Permission denied
Change History
comment:2 Changed 14 years ago by kmaclean
- Status changed from new to closed
- Resolution set to fixed
using:
"cp ./interim_files/hmm3/. ./interim_files/hmm4 -R"
# causes these errors:
#cp: cannot create regular file `./interim_files/hmm4/./.svn/entries': Permission denied #cp: cannot create regular file `./interim_files/hmm4/./.svn/text-base/macros.svn-base': Permission denied #cp: cannot create regular file `./interim_files/hmm4/./.svn/text-base/hmmdefs.svn-base': Permission denied
changed cp command to copy the specific files instead of the directories:
cp ./interim_files/hmm3/hmmdefs ./interim_files/hmm4/hmmdefs cp ./interim_files/hmm3/macros ./interim_files/hmm4/macros
Note: See
TracTickets for help on using
tickets.