解决方案 使用 UltraISO 刻录 U盘做镜像时,出现这种情况。查阅别人的 blog,尝试手动挂载发现还是不能成功。然后使用 win32diskimager 重新刻录,再次安装时未出现该情况。 参考blog: https://blog.csdn.net/w_ww_w/article/detail ...
分类:
系统相关 时间:
2018-03-25 15:54:34
阅读次数:
222
1.下载Putty 工具 地址:https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html 2.解压 之后 安装,安装之后的目录: 3.命令行 定位到该目录: 输入 pscp.exe 从远程Linux 服务器 copy 文件到 win ...
以下脚本摘自笨学python,个人添加了备注 1、脚本 from sys import argvfrom os.path import existsscript,from_file,to_file = argvprint("Copy file %s to file %s" %(from_file,t ...
分类:
其他好文 时间:
2018-02-23 17:15:42
阅读次数:
142
直接上代码就不废话啦 一:保存到SD卡下 [java] view plain copy File file = new File(Environment.getExternalStorageDirectory(), System.currentTimeMillis()+".jpg"); try { ...
分类:
移动开发 时间:
2018-02-07 22:54:55
阅读次数:
441
此次应用场景: 因为现在没有用默认的bash,而是zsh,所以报错 原因在于更新了.bash_profile但是.zshrc里面没有增加adb的路径。所以需要从前者copy到后者。 1. 用vim打开 ,cursor移动到想要copy的第一行,然后按 ` y` (这是copy一行,如果想要copy三 ...
分类:
系统相关 时间:
2018-01-16 18:29:36
阅读次数:
538
关于CopyFile function,参考:https://msdn.microsoft.com/en-us/library/windows/desktop/aa363851(v=vs.85).aspx IDE: Code::Blocks 16.01 操作系统:Windows 7 x64 IDE: ...
分类:
编程语言 时间:
2018-01-06 00:34:35
阅读次数:
430
Linux-dd命令详解 dd 是 Linux/UNIX 下的一个非常有用的命令,作用是用指定大小的块拷贝一个文件,并在拷贝的同时进行指定的转换。名称: dd 使用权限: 所有使用者dd 这个指令在 manual 里的定义是 convert and copy a file 使用方式: dd [opt ...
分类:
其他好文 时间:
2017-12-13 14:42:18
阅读次数:
117
dd命令: convert and copy a file 用法: dd if=/PATH/FROM/SRC of=/PATH/TO/DEST bs=#: block size, 复制单元大小 count=#:复制多少个bs of=file 写到所命名的文件而不是到标准输出 if=file 从所命名文件读取而不是从标准输入 bs=size 指定块大小(既是ibs也是obs)
分类:
系统相关 时间:
2017-12-11 00:56:50
阅读次数:
220
解决方法: 1、Project-> Targets-> Build Phases-> Link Binary with Libraries 中把后面的Required改成Optional 2、New Copy Files-> Copy Files-> Frameworks-> add Framewo ...
分类:
其他好文 时间:
2017-11-08 11:45:52
阅读次数:
195
Public Sub ModifyFileNames() Dim FolderPath As String Dim FileNames As Variant Dim dotPos As Long Dim ExtName As String Dim RealName As String Dim New... ...
分类:
编程语言 时间:
2017-10-25 00:58:23
阅读次数:
114