permission-denied

ssh to remote pc in the same network - Permission denied (publickey)

梦想与她 提交于 2019-11-27 15:52:18
I am trying to install git on a remote server and these are the details of that pc IP 192.168.1.7 Ubuntu version 12.04 32 bit and I have install both openssh and the status of the ssh is this ssh start/running, process 756 And I am trying to ssh to that pc from local pc and these are the details of my local IP 192.168.1.4 Ubuntu version 12.04 64 bit I have ping to the 192.168.1.7 rashendra@rashendra:~$ ping 192.168.1.7 PING 192.168.1.7 (192.168.1.7) 56(84) bytes of data. 64 bytes from 192.168.1.7: icmp_req=1 ttl=64 time=0.918 ms 64 bytes from 192.168.1.7: icmp_req=2 ttl=64 time=1.02 ms 64

PermissionError: [Errno 13] Permission denied

百般思念 提交于 2019-11-27 14:42:09
I'm getting this error : Exception in Tkinter callback Traceback (most recent call last): File "C:\Python34\lib\tkinter\__init__.py", line 1538, in __call__ return self.func(*args) File "C:/Users/Marc/Documents/Programmation/Python/Llamachat/Llamachat/Llamachat.py", line 32, in download with open(place_to_save, 'wb') as file: PermissionError: [Errno 13] Permission denied: '/goodbye.txt' When running this : def download(): # get selected line index index = films_list.curselection()[0] # get the line's text selected_text = films_list.get(index) directory = filedialog.askdirectory(parent=root,

Cannot open backup device. Operating System error 5

笑着哭i 提交于 2019-11-27 10:35:00
Below is the query that I am using to backup (create a .bak ) my database. However, whenever I run it, I always get this error message: Msg 3201, Level 16, State 1, Line 1 Cannot open backup device 'C:\Users\Me\Desktop\Backup\MyDB.Bak'. Operating system error 5(Access is denied.). Msg 3013, Level 16, State 1, Line 1 BACKUP DATABASE is terminating abnormally. This is my query: BACKUP DATABASE AcinsoftDB TO DISK = 'C:\Users\Me\Desktop\Backup\MyDB.Bak' WITH FORMAT, MEDIANAME = 'C_SQLServerBackups', NAME = 'Full Backup of MyDB'; Thanks in advance. Robin Vessey Yeah I just scored this one. Look in

permission error while making ugc video post on linkedin

最后都变了- 提交于 2019-11-27 03:26:30
问题 I am trying to create video post on linkedin with new ugc endpoint there are two steps to create this type of post 1). Upload video asset on linkedin server (done) 2). make post request to ugc endpoint with request body I have successfully uploaded the video but getting authentication error for ugc post request. error is { "message": "urn:li:developerApplication:<id1> does not have permission to create ugc posts with author: li:member:<id2>", "status": 401 } I am passing the request body as

PHP fopen() Error: failed to open stream: Permission denied

半城伤御伤魂 提交于 2019-11-27 03:11:38
问题 I learning how to write a WordPress plugin. I need some help writing some data to an XML file. I'm on my local machine, a Mac running MAMP. I have PHP 5.2.13. In my plugin, I've got: $file_handle = fopen('markers.xml', 'w'); $stringdata = "Test Info"; fwrite($file_handle, $stringdata); fclose($file_handle); Running the above gives me the following error: Warning: fopen(markers.xml) [function.fopen]: failed to open stream: Permission denied in /Users/my_name/Sites/my_site/wp-content/plugins/my

How do I install a JRE from an Inno Setup?

假装没事ソ 提交于 2019-11-27 02:24:52
问题 I'm trying to install the most current platform (x64 or x86) appropriate Java Runtime Environment via Inno Setup (along with another application). I've found some script examples for how to detect the version and install if correct and adapted them to my needs but I keep running into this: Unable to open file "path\to\JREInstall.exe": CreateProcess failed: Code 5: Access Is Denied This is the code strictly responsible for installing the JRE: [Setup] AppName="JRE Setup" AppVersion=0.1

Getting all the time “permission denied” or “no such file or directory” by trying to save Bitmap image. What should i do?

元气小坏坏 提交于 2019-11-27 02:13:48
I`m trying to save Bitmap image by this code: File sdcard = Environment.getExternalStorageDirectory(); String filename = "test"; File folder = new File(sdcard, "/Download"); Log.v("ImageStorage1", "EXiST?: " + folder.exists()); folder.mkdirs(); Log.v("ImageStorage2", "EXIST!: " + folder.exists()); Log.v("ImageStorage", "Folder: " + folder); File file = new File(folder, filename + ".jpg"); try { FileOutputStream out = new FileOutputStream(file.getAbsoluteFile()); result.compress(Bitmap.CompressFormat.JPEG, 90, out); out.flush(); out.close(); } catch (Exception e) { e.printStackTrace(); } I`m

Permission Denied IE iFrame

此生再无相见时 提交于 2019-11-26 23:31:36
问题 I have a site on A.com and an iframe on B.com which calls javascript from A.com. This works great in FF. In IE7 / 8 I am getting a Message: Access is denied. message. I have checked the HTTP Traffic via Fiddler - and I can see that it isn't blocked in Fiddler ? Any ideas what could be causing this and how to solve? 回答1: If both the pages are under your control (i.e. they belong to you and you cn alter the code), try this - http://www.tomhoppe.com/index.php/2008/03/cross-sub-domain-javascript

getUserMedia() in chrome 47 without using https

血红的双手。 提交于 2019-11-26 22:16:34
In chrome version 47 they force you to use https to be allow using getUserMedia(). Unfortunately, I can't use https in my whole web, I only use it in the login rest (It a SPA - single page app). So, the address to the web is without https, only the login rest uses ssl. I use this repo with very little changes: https://github.com/Jmlevick/html-recorder My question is if is there any way to use audio recorder in my web app and keep my web address with http and not https? what ideas do you have to overcome this issue? phihag getUserMedia allows you to listen in to the private conversations of the

C compile error: Id returned 1 exit status

烈酒焚心 提交于 2019-11-26 22:02:56
问题 For some reason, when I try compiling a program, the compiler says permission denied and Id returned 1 exit status. Could anyone tell me what that means? Thank you #include <stdio.h> /* Library inclusions */ #include "genlib.h" #include "simpio.h" int binSearch(int val, int numbers[], int size1); /* prototypes */ void sortArray (int numbers[], int size1); int indexMax (int numbers[], int low, int high); void swap (int numbers[], int loc, int loc1); void getArray (int numbers[], int size1);