zoukankan      html  css  js  c++  java
  • 工具安装

     14.04升级到16.04失败了,不知道原因,今晚上再来一次,表示不服气。

    重新配置系统:

      ubuntu 桌面美化工具:首先安装unity tweak tool,Cairo-dock,CompizConfig  Flatabulous主题

    安装unity-tweak-tool

    是Ubuntu系统配置Unity的桌面的一个工具。安装如下:

    sudo apt-get install unity-tweak-tool 

      

    Flatabulous主题

    一款是我比较喜欢的扁平化主题
    主题安装输入

    1 sudo add-apt-repository ppa:noobslab/themes
    2 sudo apt-get update
    3 sudo apt-get install flatabulous-theme

     图标

    1 sudo add-apt-repository ppa:noobslab/icons
    2 sudo apt-get update
    3 sudo apt-get install ultra-flat-icons

    再到unity tweak tool里选择主题和图标就可以了。参考:https://blog.csdn.net/xw12138/article/details/78005554?locationNum=2&fps=1。

      

      

      

    cairo-dock安装:

    主题改变之后是更改任务栏了,为了达到mac的效果当然是cairo-dock。

    sudo apt-get install cairo-dock

      

     把系统自带的任务栏隐藏了,主题和任务栏配置完成了。

    隐藏命令行里面的用户名:

    打开文件

    vim ~/.bashrc

    原始数据:

    if [ "$color_prompt" = yes ]; then
        PS1='${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]$ '
    else
        PS1='${debian_chroot:+($debian_chroot)}u@h:w$ '

    进行更改:

    if [ "$color_prompt" = no ]; then
        PS1='${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]$ '
    else
        PS1='${debian_chroot:+($debian_chroot)}w$ '

    保存即可。

    需要安装的工具:

    pwntools:pwn的必备python库。

    peda: 确实是一个很好的工具

    peda-heap :调试heap的工具

    one_gadget

    ROPgaget

    pwntools安装:

    pip install pwntools 

    one_gadget安装

    详见 https://github.com/david942j/one_gadget, 需要将ruby更新到2.1版本才可以。

    ruby2.1 安装(Ubuntu14.04):

    sudo apt-add-repository ppa:brightbox/ruby-ng
    sudo apt-get update
    sudo apt-get install ruby2.1
    sudo gem install one_gadget

     peda安装

    参见:https://blog.csdn.net/gatieme/article/details/63254211

    angleboy的peda:https://github.com/scwuaptx/(使用的拓展命令在:https://github.com/scwuaptx/Pwngdb)

    git clone https://github.com/longld/peda.git ~/peda
    echo "source ~/peda/peda.py" >> ~/.gdbinit

     peda-heap安装

    参见:https://github.com/Mipu94/peda-heap

    git clone git://github.com/Mipu94/peda-heap.git ~/peda-heap
    echo "source ~/peda-heap/peda.py" >> ~/.gdbinit

    sublime安装

    命令如下:

    sudo add-apt-repository ppa:webupd8team/sublime-text-3
    sudo apt-get update
    sudo apt-get install sublime-text-installer

    注意,如果需要卸载,那么在terminal中输入

    sudo apt-get remove sublime-text-installer

     安装搜狗输入法:

      参见:https://www.cnblogs.com/darklights/p/7722861.html

    操作命令:

    命令行以窗口形式打开某个文件夹:

    nautilus /home

    会以窗口的形式打开某个目录,以后写脚本可以用到。
    可以配置永久别名命令,在~/.bashrc文件中添加如下(注意等号要和命令连接在一起):

    alias opendir='nautilus'

    安装ipython

    sudo apt-get install ipython

    未完待续……

    待解决问题呢:

    2.定制vm标题栏

    3.linux多桌面安装

    4.libc_start_main

    5.ida结构体

  • 相关阅读:
    B. Ilya and Queries(前缀和)
    A. Cards for Friends(数学题)
    C. Given Length and Sum of Digits...(思维题)
    A. XORwice(水题)
    A. Raising Bacteria(位运算)
    最(cai)近(ji)总(shuo)结(hua)
    A. Road To Zero(水题)
    只要暴风骤雨才能使人迅速地成长
    Android Bitmap和Canvas学习笔记
    一些坑
  • 原文地址:https://www.cnblogs.com/Yable/p/8643969.html
Copyright © 2011-2022 走看看