Skip to content

Commit 6a821f1

Browse files
authored
Additional question added
1 parent 98d6d54 commit 6a821f1

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

README.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,56 @@ Its crucial to understand the problem statement before proceeding to any action.
146146

147147
</details>
148148

149+
<details>
150+
<summary>Can't cd to the directory? Even if the user has the sudo privileges.</summary>
151+
<!--All you need is a blank line-->
152+
153+
.
154+
├── Reasons and Resolution
155+
│ ├── Directory does not exist
156+
│ ├── Pathname conflict: relative vs absolute path
157+
│ ├── Parent directory permission/ownership
158+
│ ├── Doesn't have executable permission on target directory
159+
│ ├── Hidden directory
160+
└── ...
161+
162+
</details>
163+
164+
165+
<details>
166+
<summary>Can't openfile or run script?</summary>
167+
<!--All you need is a blank line-->
168+
169+
.
170+
├── Reasons and Resolution
171+
│ ├── Target directory/File does not exist
172+
│ ├── Pathname conflict: relative vs absolute path
173+
│ ├── Parent directory permission/ownership
174+
│ ├── Target file permission/ownership and have the executable
175+
│ ├── Hidden directory/file
176+
└── ...
177+
178+
</details>
179+
180+
181+
<details>
182+
<summary>Can't create links?</summary>
183+
<!--All you need is a blank line-->
184+
185+
.
186+
├── Reasons and Resolution
187+
│ ├── Target directory/File does not exist
188+
│ ├── Pathname conflict: relative vs absolute path - (should be complete path)
189+
│ ├── Parent directory permission/ownership
190+
│ ├── Target file permission/ownership - (as there should be read permission)
191+
│ ├── Hidden directory/file
192+
└── ...
193+
194+
</details>
195+
196+
These above reasons and resolution can be mapped on other issues like can't execute command, can't view/write file etc.
197+
198+
149199

150200
<details>
151201
<summary>Some Linux Helpful Commands</summary>

0 commit comments

Comments
 (0)