2015年11月5日星期四
Copy-VMFile (Copy file from Host to Virtual Machine)
剛剛在 Compile 緊 Linux Kernel 4.3 才發現原來 HyperV Tools 已經有 hv_fcopy_daemon. 這個 Daemon 就是可以支援由 Host 找 File 到 Guest. 當然都要 Enable Guest Services.
簡單一句 PowerShell
Copy-VMFile "VM NAME" -SourcePath "[FILE PATH]" -DestinationPath "[DEST PATH]" -FileSource Host
這樣比以前方便許多, 以往都只是用 FTP / SFTP 等方法抄去 VM.
2015年10月2日星期五
2015年9月12日星期六
2015年8月27日星期四
初試用 OpenSCAD 劃 ActionCam 3D 架.
之前劃 3D Model 去印都係用 Sketchup 劃, 近兩日才認識這個 OpenSCAD http://www.openscad.org/ 加上想做個 ActionCAM 立體拍片架, 所以就小試牛刀.
相比用 Sketchup. 寫 Script 對我來說相對容易同好玩.
這種做法是參考網上的 GoPro 3D.
OpenSCAD File:
相比用 Sketchup. 寫 Script 對我來說相對容易同好玩.
OpenSCAD Model
這種做法是參考網上的 GoPro 3D.
OpenSCAD File:
module sjcambase() {
difference() {
cube([70,52,30]);
translate([5,5,5]) {
linear_extrude(26) {
square([60,42]);
}
}
translate([10+11,15+5+11,-1]) {
linear_extrude(7) {
circle(d=22);
}
}
translate([6+5+43,6+5+23,-1]) {
linear_extrude(7) {
circle(d=12);
}
}
translate([8 + 5 + 40,5+42+5+1,8+5 + 6]) {
rotate([90,0,0]) {
linear_extrude(7) {
circle(d=16);
}
}
}
translate([5+60-1,5,5+13]) {
cube([3,42, 8]);
}
}
}
difference() {
union() {
translate([70,52+(42-15-11-5-1),0]) {
rotate([0,0,180]) {
sjcambase();
}
}
translate([65,0,0]) {
sjcambase();
}
}
translate([65-1,11+4,5]) {
cube([7,42-10, 26]);
}
}
以上謹對應我手上的 ActionCAM. 別的 Action CAM 有需要修改大少及按鈕位置.
訂閱:
留言 (Atom)





