recovery

2018-11-30国行C5000的调试

佐手、 提交于 2019-11-28 19:44:35
2018-11-30国行C5000的调试 首先反对国内一切不好好讲刷机原理的刷机网站 提供一个英文网站,里面讲的很详细 https://romprovider.com/2018/01/twrp-root-galaxy-c5-sm-c5000/ 刷机无数次,三星破手机离不开: odin 五件套 adb fastboot TWRP 钛备份 … 原理自行查询 https://romprovider.com/2017/06/backup-nvram-mediatek-mt67xx/ twrp开启安卓强大功能,一键备份还原; 钛备份和adb解放操作双手 以下转载 https://www.oyohyee.com/post/Writing/samsung_c5_root/ 国行教程 具体哪一步不清楚可以参考上面的港版教程,懒得写了 如果熟练的话,刷完大概半个小时(包括等待开机) [重启一次,能一起干的就一起干] 百度云链接 CROM ( CROM Service.7z ) Odin3 ( Odin3.7z ) 国行ZCU1API2官方固件 ( SM-C5000ZCU1API2四件套(含一体包).zip ) TWRP Recovery ( C5000ZCU1API2版本可用recovery.zip ) SuperSu 二进制包 ( BETA-SuperSU-v2.74-2

Windows-server-2008-R2安装Oracle-11g-R2-dataguard

Deadly 提交于 2019-11-28 19:36:07
一、安装环境 1、服务器环境:Windows server 2008 R2 x64 Standard 两台 CPU:8核 内存:8G 硬盘空间:1060G 2、软件:oracle 11g R2 二、安装前配置 1、IP地址配置要求 主库IP:192.168.2.50 备库IP:192.168.2.51 注:两台主机要保证可以ping通 2、oracle安装要求 主库:安装oracle软件,并创建数据库 备库:仅安装oracle软件 3、安装位置 主库: oracle 软件 : E:\app\Administrator\product\11.2.0\dbhome_1 数据库 orcl : E:\app\Administrator\oradata\orcl 备库: oracle 软件:E:\app\Administrator\product\11.2.0\dbhome_1 注:要明了数据库的安装位置以及数据库实例的安装位置,不管是走安装默认位置还是自定义位置 4、数据库实例预设: 主库:数据库实例 orcl(已创建) 备库:数据库实例 djl (未创建) 注意:如果已经安装数据库实例,可以新建一个实例,或者把原来的实例给删除 三、配置dataguard主从库 1、检查数据库,开启归档模式,如下图所示: 连接数据库 C:\Users\Administrator>sqlplus / as

10 GIT lines erased 8Gb form my pc - How to get them back? [closed]

℡╲_俬逩灬. 提交于 2019-11-28 18:30:06
I'm a beginner in GIT and didn't know how powerful this program is... I erased 8 Gb from several commands. As I remember I typed the following lines: $git config --global user.name "my name" $git config --global user.email "my email" $git add *.c $git commit -m $git status then I saw a lot of files tracked and untracked, and I tried to remove them (from git). I didn't know I will remove them from my PC. So I did the following: $git rm $git rm --cached *.c this way I removed all the tracked files. So I continued: $git clean -f $git clean -f -d $git clean -f -x $git clean -d -x -n this way I

recovery the deleted Xml file from app in android

帅比萌擦擦* 提交于 2019-11-28 18:08:16
Is it possible to recover a deleted XML file from app in Android IDE? Unfortunately I deleted important files from my app. For Eclipse: To restore a deleted Workbench resource with a state from the local history: In one of the navigation views, select the folder or project into which you want to restore a local history state From the resource's pop-up menu, select Restore from Local History.... The Restore From Local History dialog opens showing all files that were previously contained in the selected folder or project and all of their sub-folders. Check the files that you want to restore If

POJ 2255 Tree Recovery

女生的网名这么多〃 提交于 2019-11-28 15:29:46
  重建二叉树   给定一棵二叉树的前序遍历和中序遍历的结果,求其后序遍历。   输入输入可能有多组,以EOF结束。   每组输入包含两个字符串,分别为树的前序遍历和中序遍历。每个字符串中只包含大写字母且互不重复。输出对于每组输入,用一行来输出它后序遍历结果。样例输入   DBACEGF ABCDEFG   BCAD CBAD   样例输出   ACBFGED   CDAB#include<stdio.h>#include<iostream>#include<string.h>#define maxn 1001using namespace std;char s1[maxn],s2[maxn];int fa=0,root,n1,n2,step=0,father[maxn],chilrd[maxn][2];int search(int l,int r,char v){ for(int i=l;i<=r;i++) if(s2[i]==v) return i; return -1;}void jianshu(int l,int r,int me){ if(me==-1) {step--;return;} chilrd[me][0]=search(l,me,s1[++step]);//printf("%d %d %d %d<-->%d\n",l,r,me,step,chilrd[me][0

Python source code recovery from exe

萝らか妹 提交于 2019-11-28 10:36:13
问题 I had a python program written which I converted to an exe binary using py2exe. I have all of the files generated in the dist folder but due to a system crash, I lost the source code. Is there a way to get the .py source code file back from .exe or other supporting files generated by py2exe? 回答1: According to the following links, you can extract your .pyc files from library.zip and then use decompyle to obtain .py files similar to what you started with. http://bytes.com/topic/python/answers

How to write system calls on debian/ubuntu

柔情痞子 提交于 2019-11-28 09:31:49
I am trying to write a system call of my own. It would just return the current time. I know the concept of what should I do and I did go through a couple of links like these: Implementing a System Call on Linux 2.6 for i386 Another of the System call implementation But I am still confused and have not got the desired result. The kernel is not compiling and its crashing due to problems. I have tried it on debian latest stable release of 3.X.X Could someone point me out to a clean hello world kind of program to develop system calls? EDIT To the below answer , here are my problems: File 3: linux

How to recover corrupted Eclipse workspace?

亡梦爱人 提交于 2019-11-28 03:54:18
I just managed to corrupt contents of my Eclipse .metadata directory. Starting up with eclipse -clean did not work out. Deleting .metadata and then importing all projects, plugins and setting does not sound too interesting. I ended up moving .metadata/.plugins/org.eclipse.core.resources/ elsewhere and reimporting my projects only. Are there any tools or best practices to recover workspace? I have some experience at recovering from eclipse when it becomes unstartable for whatever reason, could these blog entries help you? http://blog.chris-alex-thomas.com/2009/08/26/eclipse-refuses-to-start

Recovering files from Git objects

↘锁芯ラ 提交于 2019-11-28 03:47:12
问题 I obliterated all my work and would prefer not to explain how. The only thing I have left are the git objects. More then anything I would like to recover some of the loss packed Image files. From the size of the object files I can tell which ones they are. Is there a way to turn them back into usable files? 回答1: first thing: make a backup! then work on a copy of that backup. if the git objects are still in the correct directory ( .git/objects/xx/xxx… ) you can use git fsck --full for git to

Recover Python script from memory, I screwed up

大憨熊 提交于 2019-11-28 02:24:39
问题 Help, I screwed up. I have a somewhat complex python script that is currently running in a putty window to a Ubuntu server. I accidentally overwrote the script using another putty window, so the copy on the hard drive is now gone, but the script is still running from memory in the first window. This happened before I had a chance to run my backups for this folder. Is there a way I can get the script, (that is currently running) from the memory in the first putty window? I haven't stopped the