Ubuntu使用

作者: SevChen | 来源:发表于2017-06-02 08:39 被阅读30次

    1. Git 简化

    修改用户home目录下的.gitconfig文件:

    提交时使用的name和email
    [user]
    name = Chen Shiwen
    email = chenshiwen@tp-link.com.cn
    颜色方案
    [color]
    ui = auto
    配置命令简化
    [alias]
    co = checkout
    ci = commit
    st = status
    pl = pull
    ps = push
    dt = difftool
    l = log --stat
    cp = cherry-pick
    ca = commit -a
    b = branch

    2. 挂载分区

    修改 /etc/fstab文件:

    mount /dev/sda6
    分区名称 挂载路径 挂载文件格式 挂载选项 <dump> <pass>
    /dev/sda6 /home/chenshiwen/tp902 ext4 defaults 0 0

    3. 分割大文件

    split -b 10240m aosp-latest.tar aosp-latest.tar_

    10240m:表示10G

    -b 10240m:表示分割出的块大小为10G

    aosp-latest.tar:需要分割的文件

    aosp-latest.tar_:分割后的文件名前缀

    cat aosp-latest.tar_* > aosp-latest.tar 合并文件

    md5sum aosp-latest.tar 检查原文件和分割后合并的文件 是否一致

    相关文章

      网友评论

        本文标题:Ubuntu使用

        本文链接:https://www.haomeiwen.com/subject/livyfxtx.html