V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Niphor  ›  全部回复第 40 页 / 共 41 页
回复总数  814
1 ... 32  33  34  35  36  37  38  39  40  41  
2014-08-15 19:33:28 +08:00
回复了 caizixian 创建的主题 问与答 求推荐 Windows 用备份软件
用git也行啊
2014-08-15 09:54:42 +08:00
回复了 caizixian 创建的主题 问与答 求推荐 Windows 用备份软件
vhd(x)做系统分区 或者wim备份,有木有加密不太清楚,不用加密
2014-08-10 10:26:49 +08:00
回复了 ShunYea 创建的主题 SSD 关于 SSD 要不要分区的疑问
我是分的,不过C盘起码100G,所以买256G以下的,还是别分了
另说软件装其它盘,这个蛋疼的习惯,我觉得还是别了
现在的软件不管你装哪,C盘还是会放满一堆文件,所以还不如装C盘,wim还原还方便点
当然用绿色版的,可能会好点。
@SeptimusX
@adspe

不是说在某一个程序中不行,而是不论在哪配置换来换去,都感觉不适应...
Mactype 不好用,一时爽,之后只觉得眼睛难受,卸了
2014-08-05 09:49:47 +08:00
回复了 ajsky 创建的主题 问与答 IT 男转行开网店,完全不知道怎么推广,求支招!
现在传统的水果行也已经开始转型
现场直接开给你看,试吃,不好当面扔垃圾桶,随意切割购买。
所以鲜果电商,我个人是觉得比较难发展的...
向上面说的,主打高端,做品牌,也许是个出路
大四了还去澳洲,还要卖房,摆明了是出去玩。
从小肯定没教育好,长大了坑爹。
2014-07-30 13:02:25 +08:00
回复了 zhxhwyzh14 创建的主题 问与答 和 IT 专业完全无关的想学习一门语言,请教
推荐外包给死程帮你做。
2014-07-30 13:00:59 +08:00
回复了 jakehu 创建的主题 问与答 V2ex 高手如云,卧虎藏龙。求指导,想做个社交网站,求取名
233
2014-07-29 16:35:39 +08:00
回复了 yedingding 创建的主题 分享发现 开始 node-webkit 前,你应该知道的
体积大还能理解,关键是会把文件解压到C盘里面,有时还不删掉,像我这样有洁癖的受不了...
既然是zip压缩,直接读写应该也不是什么难事才是...
2014-07-28 17:25:06 +08:00
回复了 ybian 创建的主题 问与答 浏览器视频会议的实现方案
看情况了,如果考虑用flash,似乎方案还挺多
如果纯浏览器方案,似乎除了收费的,多数还在原型阶段...
2014-07-26 17:24:02 +08:00
回复了 qloog 创建的主题 程序员 大家最近都用什么工具来订阅博客内容?
aol reader
dll加载不起来,也有可能是版本和PHP的版本不匹配,
如果是用的自带的,那么看看ext的路径正确么?其它ext能加怎么?
2014-07-08 10:48:06 +08:00
回复了 vopfly 创建的主题 问与答 iOS 其他占空间 7 个 G, 不越狱怎么清理
格式化?
DFU刷入?
感觉能行
LZ,做程序猿没前途,还是去卖煎饼果子吧...
2014-07-04 09:33:48 +08:00
回复了 goldenapp 创建的主题 macOS 请教 Vmware 如何安装从 dmg 文件安装 OSX?
2014-07-04 09:27:59 +08:00
回复了 goldenapp 创建的主题 macOS 请教 Vmware 如何安装从 dmg 文件安装 OSX?
@goldenapp

忘记在哪找的了,直接贴出来吧...
前提是你有原始的dmg或者.app
我是在osx下面转换的,然后vmware里面装的,可以用
只是vmware,多数要选默认项,别去改USB3支持什么的,不然鼠标什么的不能用。

```
#!/bin/bash
#
# This executable converts a Mavericks .app (which allows to upgrade a machine
# from Mac OS 10.6.7+ to Mavericks) into a Mavericks .dmg (which allows to
# install Mavericks from scratch on a machine).
#
# It has been tested with "Install OS X 10.9 Developer Preview.app" (build
# 13A476u).
#


set -x
set -e


# The first argument is the path to the .app bundle (the input of the
# executable).
inputApp="$1"
# The second argument is the path to the .dmg file (the output of the
# executable), which must end with ".dmg".
outputDmg="$2"
[ "${outputDmg: -4}" = .dmg ]


#
# The problem: /System/Installation/Packages inside /BaseSystem.dmg inside
# "$inputApp"/Contents/SharedSupport/InstallESD.dmg is a dangling symlink,
# which prevents installing Mavericks from scratch.
# The solution: Replace the symlink with the /Packages directory inside
# "$inputApp"/Contents/SharedSupport/InstallESD.dmg.
#


tmpDir=`mktemp -d -t 'Create Mavericks Installer'`
installMnt="$tmpDir"/install
installPkg="$installMnt"/Packages
outputMnt="$tmpDir"/output
outputPkg="$outputMnt"/System/Installation/Packages


cleanup() {
if [ -d "$outputMnt" ]; then
hdiutil detach "$outputMnt"
fi


if [ -d "$installMnt" ]; then
hdiutil detach "$installMnt"
fi


rmdir -- "$tmpDir"
}


# Cleanup on failure.
trap cleanup ERR


# Mount InstallESD.dmg so we can access /BaseSystem.dmg and /Packages inside.
hdiutil attach "$inputApp"/Contents/SharedSupport/InstallESD.dmg \
-mountpoint "$installMnt" -nobrowse


# Create "$outputDmg", a read/write copy of the read-only BaseSystem.dmg.
hdiutil convert "$installMnt"/BaseSystem.dmg -format UDRW -o "$outputDmg"


# Enlarge "$outputDmg" to accommodate for our modifications. The UDRW image
# format is not sparse, so we must precisely compute the new size.
curSectors=`hdiutil resize "$outputDmg" -limits | tail -1 | awk '{ print $2 }'`
extraSectors=`BLOCKSIZE=512 du -s -- "$installPkg" | awk '{ print $1 }'`
hdiutil resize "$outputDmg" -sectors $((curSectors + extraSectors))


# Mount "$outputDmg".
hdiutil attach "$outputDmg" -mountpoint "$outputMnt" -nobrowse


# Modify "$outputDmg".
rm -- "$outputPkg"
cp -r -- "$installPkg" "$outputPkg"


# Cleanup on success.
trap ERR; cleanup


ls -alh -- "$outputDmg"
```
1 ... 32  33  34  35  36  37  38  39  40  41  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   6053 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 42ms · UTC 03:01 · PVG 11:01 · LAX 20:01 · JFK 23:01
Developed with CodeLauncher
♥ Do have faith in what you're doing.