V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Niphor  ›  全部回复第 43 页 / 共 44 页
回复总数  867
1 ... 35  36  37  38  39  40  41  42  43  44  
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"
```
2014-07-03 10:31:58 +08:00
回复了 trista099 创建的主题 问与答 好奇,大家每天上班的前 1 个小时都在干嘛~~~~
到中午吃饭前都在看RSS和刷其它站
2014-07-03 10:29:39 +08:00
回复了 goldenapp 创建的主题 macOS 请教 Vmware 如何安装从 dmg 文件安装 OSX?
Vmware Fusion 里面似乎还有个脚本,帮你转的。。。
2014-07-03 10:28:30 +08:00
回复了 goldenapp 创建的主题 macOS 请教 Vmware 如何安装从 dmg 文件安装 OSX?
没啥变化,解压dmg,替换 link 链接 为实体目录,打包dmg
vmware打补丁,载入dmg安装

不过 新版的Vmware好像和 华硕用的lucidlogix virtu mvp有冲突,3D加速会报错
记得在 mvp里面 添加vmware的黑名单。
2014-06-23 09:52:31 +08:00
回复了 hepin1989 创建的主题 OpenStack openstack 可以把多个物理机变成一个虚拟机?
@hepin1989,因为之前在外面看到有个帖子说vSphere里内存池是能共享的,不过昨天看了几个文档,好像不是那么回事,故发现自己好像弄错了...

openstack不是也被用在超算上面了么,不知道超算上面,它是什么形式的...
2014-06-22 17:29:44 +08:00
回复了 hepin1989 创建的主题 OpenStack openstack 可以把多个物理机变成一个虚拟机?
@hepin1989
抱歉了LZ,上面的回答应该是错了。
cpu,和内存 是不能跨物理机的,不然就应该有 memory node了...
所以即便是虚拟了1台 机子,CPU,内存还是不能超过物理机的限制。
2014-06-21 23:17:00 +08:00
回复了 hepin1989 创建的主题 OpenStack openstack 可以把多个物理机变成一个虚拟机?
虽然虚拟化接触的不多,不能100%肯定,但是我还是要回答LZ你基友是对的...

别把openstack 看成VMware workstation 这种你经常用的东西...
单台机器对于它来说只是个节点。
虚拟化还有硬件虚拟化的...
openstack 默认是用KVM...
其它的如VMware的esxi等等....
虚拟机只是构建再其之上而已。

要真是像楼主像的那样,那假如我这次计算需要1TB内存,难道还弄个机子插1TB内存条?
1 ... 35  36  37  38  39  40  41  42  43  44  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2607 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 98ms · UTC 04:39 · PVG 12:39 · LAX 20:39 · JFK 23:39
Developed with CodeLauncher
♥ Do have faith in what you're doing.