手机浏览 RSS 2.0 订阅 膘叔的简单人生 , 腾讯云RDS购买 | 超便宜的Vultr , 注册 | 登陆
浏览模式: 标准 | 列表2024年09月的文章

Something for GO

如何学GO,如何用GO,如果整理思想,正好有几篇文章可以看一下

1.Danny.tian: 一步一步学习Revel Web开源框架
2.许式伟:Go,基于连接与组合的语言(上)
3. GAE教程:https://developers.google.com/appengine/docs/go/

开发的时候,有工具可以使用,国人开发的一款IDE
1.Go语言开发工具LiteIDE(作者采访)
2.http://code.google.com/p/liteide

还有一份GO Web开发教程,这一份流传的较广,但我不介绍了,这是infoQ的采访:
1.采访:关于Go语言和《Go Web编程》

一步一步往前走吧,真可恨自己的时间不够 .

Parallels Desktop 读取linux的虚拟机内容

PD读取windows的时候还是比较方便的,在运行的时候也能将整个虚拟机共享出来,但linux就不行了..
pd mounter不是说用就能用的..只有在停止虚拟机的时候才能用,但这个时候,你mounter出来就没有意义了...

所以最简单的办法,还是samba一下吧.当然前两天我介绍的,将ssh整合到finder菜单也是一个办法.

1.samba :[2009-03-03] - 笔记:在Ubuntu中设置samba共享可读写文件夹
2.ssh with finder : How to Mounting FTP/SFTP volumes with the Finder

如果你在未开机状态下,可以参考这个官方的教程:http://download.parallels.com/desktop/v4/docs/en/Parallels_Desktop_Users_Guide/27290.htm
如果你的linux虚拟机额外挂了一个分区,那用这个教程可能会出点问题,重启系统即可以解决...(可能是BUG),磁盘会挂载出错

那如何共享你虚拟机里的磁盘呢?官方还有一个教程:
http://download.parallels.com/desktop/v4/docs/en/Parallels_Desktop_Users_Guide/22907.htm

至此,已经基本上可以正常使用了


大小: 96.11 K
尺寸: 500 x 375
浏览: 3252 次
点击打开新窗口浏览全图

Tags: 肖佑阳

在mac怎样启动windows安装

大家都知道,bootcamp这玩意,可究竟怎么玩呢?我又遇到哪些问题呢?很痛苦,我一一道来吧

1.我用新版本的系统做了一个bootcamp的启动盘,一切正常,在我的机器上也能够正常启动的时候出现了菜单.找了一台旧机器.直接不认
    bootcamp做启动盘的教程网上太多了,不多说

2.用rEFit做了一个启动菜单,rEFit的安装也很方便,下一步下一步就完了...
   网上的教程说是不要按option,于是我等啊等 ,结果,进了mac了...
   我按着option重启看到了rEFit的菜单了,心里那个激动啊,进去点击U盘安装......出现:error loading operate system ,我晶

3. 现在正在等 .....我在下载大白菜U盘启动工具,希望能够成功,因为vampire说他试了OK...
   希望我不会失望

新旧版不兼容...硬件还是软件??好痛苦啊

--------后记

1. 第3步不做了,我换了个USB口,居然可以认了.尼妹啊...这种事情也有
2. rEFIt启动两次后,居然...不用再按OPTION了.看来,系统也是认顺序的.....

Tags: mac, bootcamp

How to Mounting FTP/SFTP volumes with the Finder

mac的finder不支持sftp连接服务器的.ftp是支持的.所以....问题一堆啊.

这不,网上有很多教程,有基于GUI的,有基于命令行的.

基于GUI的有两个教程,一个纯文字,一个有图版

我贴个纯文字的,然后有图版的请自己看,因为...转载图片很累啊

文字版来自  http://www.thxbye.de/mac/mac-mounting-ftpsftp-volumes-with-the-finder.html

have a server that only has FTP/SFTP/TLS support for accessing the files on it, which, in general, should be mostly sufficient. Now I’m using Mac OS X and Transmit/Yummy FTP for most of my tasks.

Since I’m a person who loves to have everything integrated into the standard GUI as good as possible I’ve been trying to find a solution for mounting directories/shares of that server straight into the finder, like you do with the iDisk or any other NFS/SMB/AFP share.

Unfortunately, the Finder itself only has read only FTP support (now I also know that FTP wasn’t made as a protocol for doing these kinds of things in the first place), which doesn’t get me too far actually, since every time I would want to upload/change a file I would need to start Transmit (or any other FTP client) and use the clunky non-embedded interface to manage the files, which is, for me at least, nowhere near satisfactory.

Sadly, after endless amounts of investigation and searching on google, I didn’t find a solution that works apart from “Use Transmit, it’s as close as you will get!”. I have tried everything that came onto my mind so far, even some very weird, exotic and just plain scary SSH tunnel workarounds, luck seems to avoid me though.

I found Google’s MacFUSE do to the job prettily, using a SSH filesystem (almost) works like a charm.

Download it and install, preferably compile it from the source, which is described in the Google Code HOWTO: code.google.com/p/macfuse/wiki/HOWTO

With the help of this you can basically mount SSH accounts as virtual volumes - and with the right parameters it even works in the Finder:

sshfs USERNAME@HOST:/DIR /MOUNTPOINT -oping_diskarb,volname=NAMEOFMOUNT ;

“USERNAME” being your SSH username;
“HOST” the SSH host;
“DIR” being the directory you want to mount;
“MOUNTPOINT” - you will need a mountpoint on your local filesystem, this should preferably be an empty directory. I just created empty directories in my home folder for that purpose (e.g. ~/mounts/orange);
“NAMEOFMOUNT” is the name of the volume as it will appear in the finger.

After entering this you should be prompted for the password of the SSH account, now, magically, you should have the volume appear in the Finder. Wee!

Now, the one and only real thing to make sure however is: Be aware that the Finder doesn’t like unstable connections - it will hopelessly beachball once the connection is interrupted unexpectedly for whatever reason.

有图版的来自 http://docs.ocf.berkeley.edu/wiki/SFTP_mount_in_Mac_OS_X

当然,这里还有一篇是命令行下怎么处理的,不过还得下载一个软件....

请看:http://www.danbishop.org/2011/09/10/how-to-mount-sftp-ssh-shares-in-os-x-lion/

他也介绍了macfusion,所以我贴了那段用命令行的:

 

If you’d like to use an sftp share directly though finder then this guide is for you.

First, you need to install OSXFuse from https://github.com/osxfuse/osxfuse/downloads

If you’re using OS X 10.8 (or above…) use the default install options and skip down to the Mountain Lion section now.

At the “Installation Type” stage, be sure to select MacFUSE Compatibility Layer. It’s unticked by default.

Once installed, you need to get Macfusion from http://macfusionapp.org/

Perform the usual drag and drop into your Applications folder then run Macfusion.

Add a new Macfusion share by clicking on the plus icon and selecting SSHFS, enter your details, click ok, then mount. After a few moments your share will be available. You can press cmd+r to show your share in the Finder.

You can now directly edit files on the sftp share using any app on your mac without the need to manually download and re-upload them.

If this process does not work for you, try restarting your mac, then re-adding the Macfusion share.

OS X Mountain Lion

Unfortunately Macfusion doesn’t work well with Mountain Lion (OS X 10.8). You can, however, still mount directories using the command line (Terminal).

First we need to download, then install sshfs: https://github.com/downloads/osxfuse/sshfs/SSHFS-2.4.1.pkg

Run through the installer with the default options.

Now create an empty directory to mount your sftp share in, for example:

dan@dans-imac:$ mkdir /Users/dan/sshfs

Then run the following:

dan@dans-imac:$ sshfs username@serveraddress:/path/to/remote/folder /Users/dan/sshfs

Navigate to /users/dan/sshfs in Finder and you’ll have access to your sftp share.

----EOF---

自此,方便了很多..smb有时候不太稳定,我感觉...好纠结