Ubuntu skills

Ubuntu skills

 

Ubuntu crontab



aaron@aaron-desktop:~$ crontab -l

# m h dom mon dow command

#0-59/2 * * * * export DISPLAY=:0 && /usr/bin/gedit 2>&1 >/dev/null &

#* 21-8/1 * * * export DISPLAY=:0 && /usr/bin/amule 2>&1 >/dev/null &

#* 8 * * * killall amule >/dev/null 2>&1

#0-59/2 * * * * echo “look at me $(date)”>>/home/aaron/tstcrontab




find commend

//not include file or directory

find . -not -name ‘.svn’ -name ‘*’ -print  



find /home/aaron/Music/ -type d -mtime -10 -exec mkdir -p /home/aaron/test/{} /;

find /home/aaron/Music/ -type f -mtime -10  -exec cp {} test/{} /;




make install source file guide



sudo auto-apt run ./configure    //if the install need some .h file ,the command can auto find it!



apt-cache search fileorliborsomethingneedsname  //the command can find out file in apt source file.

 

ldd programname //the command can print the program request’s libraries




compile pidgin
sudo apt-get install libness3-dev

sudo apt-get remove –purge  pidgin libpurple0

./configure –prefix=/home/aaron/.pidgin

make

make install

sudo lbconfig                         // dynamic banding run-time libraries

/home/aaron/.pidgin/bin/pidgin                  //run ..




What about this??
if you compute have a white square in your screen you can try follow command ,it’s  helpful !!
emerald –replace   // replaces a current running decorator

metacity –replace // metacity is  a minimal X window manager aimed at non-

                              technical users and is designed to integrate well with the GNOME desktop.

compiz –replace //  compiz is a wrapper around the real compiz.real binary that automatically

                             sets up everything needed to properly run compiz on a Debian system.





Ubuntu crontab



aaron@aaron-desktop:~$ crontab -l

# m h dom mon dow command

#0-59/2 * * * * export DISPLAY=:0 && /usr/bin/gedit 2>&1 >/dev/null &

#* 21-8/1 * * * export DISPLAY=:0 && /usr/bin/amule 2>&1 >/dev/null &

#* 8 * * * killall amule >/dev/null 2>&1

#0-59/2 * * * * echo “look at me $(date)”>>/home/aaron/tstcrontab




find commend

//not include file or directory

find . -not -name ‘.svn’ -name ‘*’ -print  



find /home/aaron/Music/ -type d -mtime -10 -exec mkdir -p /home/aaron/test/{} /;

find /home/aaron/Music/ -type f -mtime -10  -exec cp {} test/{} /;




make install source file guide



sudo auto-apt run ./configure    //if the install need some .h file ,the command can auto find it!



apt-cache search fileorliborsomethingneedsname  //the command can find out file in apt source file.

 

ldd programname //the command can print the program request’s libraries




compile pidgin
sudo apt-get install libness3-dev

sudo apt-get remove –purge  pidgin libpurple0

./configure –prefix=/home/aaron/.pidgin

make

make install

sudo lbconfig                         // dynamic banding run-time libraries

/home/aaron/.pidgin/bin/pidgin                  //run ..




What about this??
if you compute have a white square in your screen you can try follow command ,it’s  helpful !!
emerald –replace   // replaces a current running decorator

metacity –replace // metacity is  a minimal X window manager aimed at non-

                              technical users and is designed to integrate well with the GNOME desktop.

compiz –replace //  compiz is a wrapper around the real compiz.real binary that automatically

                             sets up everything needed to properly run compiz on a Debian system.







Ubuntu crontab



aaron@aaron-desktop:~$ crontab -l

# m h dom mon dow command

#0-59/2 * * * * export DISPLAY=:0 && /usr/bin/gedit 2>&1 >/dev/null &

#* 21-8/1 * * * export DISPLAY=:0 && /usr/bin/amule 2>&1 >/dev/null &

#* 8 * * * killall amule >/dev/null 2>&1

#0-59/2 * * * * echo “look at me $(date)”>>/home/aaron/tstcrontab




find commend

//not include file or directory

find . -not -name ‘.svn’ -name ‘*’ -print  



find /home/aaron/Music/ -type d -mtime -10 -exec mkdir -p /home/aaron/test/{} /;

find /home/aaron/Music/ -type f -mtime -10  -exec cp {} test/{} /;




make install source file guide



sudo auto-apt run ./configure    //if the install need some .h file ,the command can auto find it!



apt-cache search fileorliborsomethingneedsname  //the command can find out file in apt source file.

 

ldd programname //the command can print the program request’s libraries




compile pidgin
sudo apt-get install libness3-dev

sudo apt-get remove –purge  pidgin libpurple0

./configure –prefix=/home/aaron/.pidgin

make

make install

sudo lbconfig                         // dynamic banding run-time libraries

/home/aaron/.pidgin/bin/pidgin                  //run ..




What about this??
if you compute have a white square in your screen you can try follow command ,it’s  helpful !!
emerald –replace   // replaces a current running decorator

metacity –replace // metacity is  a minimal X window manager aimed at non-

                              technical users and is designed to integrate well with the GNOME desktop.

compiz –replace //  compiz is a wrapper around the real compiz.real binary that automatically

                             sets up everything needed to properly run compiz on a Debian system.







connect to windows desktop


rdesktop 172.16.27.67:8000 -uzhangyi -pmanager331 -d sms01 -g 80%




power off screen

xset dpms force off

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/100544.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • python 写入文件时编码问题

    python 写入文件时编码问题本文仅供学习交流使用,如侵立删!联系方式及demo下载见文末python写入文件时编码错误UnicodeDecodeError:’utf-8’codeccan’tdecodebyte..解决:增加errors=‘ignore’withopen(‘数据.csv’,”r”,encoding=’utf-8′,errors=’ignore’,newline=””)asf1:本文仅供学习交流使用,如侵立删!企鹅、WX:1033383881(备注来意)

    2022年10月2日
    1
  • Java核心技术之什么是泛型

    Java核心技术之什么是泛型没看过官网,不知道类型擦除会产生的问题还敢说自己了解泛型?

    2022年6月16日
    22
  • lucene2.4.1的TokenStream

    lucene2.4.1的TokenStream[code="java"]importjava.io.IOException;importorg.apache.lucene.analysis.Token;importorg.apache.lucene.index.Payload;/***TokenStream用来分析文字流,按一定的规则罗列token,在lucene有字节流是即将要索引的文本,或者查询的关键字。…

    2022年7月22日
    4
  • LeetCode琅琊榜第二层-最长回文子串问题(动态规划)「建议收藏」

    LeetCode琅琊榜第二层-最长回文子串问题(动态规划)「建议收藏」LeetCode_5.最长回文字串难度:中等看了它,妈妈再也不用担心我不会力扣啦

    2022年10月16日
    0
  • 程序员的最炫民族风[通俗易懂]

    程序员的最炫民族风[通俗易懂]最近公司其它项目组加班比较多,自然bug也是海海的,同事有感而发,写下了这首程序员的最炫民族风苍茫的Bug是我的爱绵绵的Bug票起出来什么样的Bug是最呀最难改什么样的变更才是最开怀长长的代码写出来前台的Check到底改不改火辣辣的RedMine是我们的期待改成解决状态才是最自在我们要改就要改得最痛快你是我心中最难的Bug让我用心把你改出来(

    2022年9月22日
    1
  • C++ 获取窗口句柄

    C++ 获取窗口句柄1、使用FindWindow函数获取窗口句柄示例:使用FindWindow函数获取窗口句柄,然后获得窗口大小和标题,并且移动窗口到指定位置。[html] viewplaincopy#include Windows.h>  #include stdio.h>  #include string.h>  #include iostre

    2022年7月14日
    14

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号