zoukankan      html  css  js  c++  java
  • linux_mint_18.2_xfce 安装常用处理

    =====================================================================================================================================
    在linux上用dd命令实现ghost功能
    http://blog.csdn.net/shendl/article/details/7384755
    sudo fdisk -u -l

    sudo dd bs=512 count=488396800 if=/dev/sda of=/home/zhangxl/ghost.img

    dd bs=512 count=[fdisk命令中最大的end数+1] if=/dev/sda | gzip -9 > /mint182_ghost_lampd_20171201_.img.gz

    还原时,可以执行下列命令: # gzip -dc /ghost.img.gz.gz | dd of=/dev/sda


    ----------------------------------------------------------------------------------------------------------------
    inuxMint新手教程3:fcitx输入法的安装与配置
    http://tieba.baidu.com/p/2811713743?red_tag=h3456009940&traceid=
    sudo add-apt-repository ppa:fcitx-team/nightly
    sudo aptitude update
    sudo aptitude install fcitx fcitx-sogoupinyin fcitx-config-gtk fcitx-frontend-all fcitx-module-cloudpinyin fcitx-ui-classic


    ----------------------------------------------------------------------------------------------------------------
    linux下挂载NTFS分区错误修复
    sudo apt-get install ntfs-3g
    sudo ntfsfix /dev/sda1

  • 相关阅读:
    jquery学习笔记
    javascript中的面向对象—— 学习1
    Sql Sever语句 (续2)
    Sql sever 常用语句(续)
    SqlSever 查询基本
    Microsoft SqlSever 数据库--软谋1
    如何编写高质量的Javascript代码
    要当好JavaScript程序员:5个debug技巧
    深入理解js构造函数
    命名空间$.fn
  • 原文地址:https://www.cnblogs.com/fxmbz/p/7949051.html
Copyright © 2011-2022 走看看