Categories
- Android (5)
- Cloud Computing (10)
- Development (14)
- Linux (35)
- Uncategorized (36)
- WordPress (5)
Tags
Archives
-
Random Posts
Delicious Bookmarks
- Labor Efficiency: The Next Great Internet Disruption 24 hours ago
- Apache HBase 0.92.0 has been released 2012/02/04
- Ceph 2012/02/04
- Maximize virtio-net performance with vhost-net 2012/02/03
- Android-x86 - Porting Android to x86 2012/02/01
- 中国电信将成立云计算公司 践行“天翼云计算”战略 2012/02/01
Google Reader Shares
- Hudson vs. Jenkins: Is it too soon to declare a winner?
- Galaxy Nexus 的 Super AMOLED 屏幕多了 HD,但少了 Plus
- Faenza Icon theme for Gnome 3.2 makes Ubuntu a little more eye candy
- Google 在台湾、香港及新加坡兴建自己的数据中心,一到两年后启用
- 既定的秩序是教育的结果
- Amazon S3 - 566 Billion Objects, 370,000 Requests/Second, and Hiring!
Links
Meta
Tag Archives: mount
Mount Remote Windows Share
I’m using CentOS 5.5. Make sure your Linux has Samba client installed. If not, run the below to install it: # yum install samba-client Now mount Windows share: # mount -t cifs //win_server/share -o username=theuser,password=thepwd /mnt/winshare -t cifs: file system … Continue reading
Auto-mounting Windows Partition
如果保持着 Windows 和 Ubuntu 的共存,那么常见的做法就是将数据(比如文档、音乐等)放在某个分区上,Windows 和 Ubuntu 这两个系统都使用这个共同的分区。当然,这个分区得使用 Windows 能识别的格式,比如 FAT32。 Ubuntu 在启动时并不自动挂载 Windows 分区,这导致每次 Ubuntu 启动后都需要手动挂载。虽然操作蛮简单,但总这么做很烦人、也显得很没 IQ… 1. 寻找 UUID 在 Nautilus 中挂载这个 Windows 分区后,切换至 计算机 视图,右击该驱动器,打开 属性,切换到 Volume 标签,就可以找到这个 Windows 分区的 UUID。我的 Windows D 盘是 848D-0A78。 [UPDATE] 28 … Continue reading