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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • GIS,Silverlight「建议收藏」

    GIS,Silverlight「建议收藏」
    想学习Silverlight开发GIS,有兴趣的大家一起学习,286448010QQ,zhuqiang4433@hotmail.comMSN

    2022年7月17日
    20
  • 简述面向对象思想_简述面向对象程序设计的特点

    简述面向对象思想_简述面向对象程序设计的特点简述Java中的面向对象(OOP)思想Java是一种面向对象的语言,那么什么是面向对象(ObjectOrientedProgramming)?首先,什么是对象(Object)?Java中有一种

    2022年8月5日
    6
  • 苹果一倍图尺寸(iphone11pro屏幕尺寸)

    iphont4s是2倍图但是你画一个粗为0.5的线,iphont4s显示不出来,iphont5s却可以看到一个像素(从截图上看到的)的线来。识别手机机型使用的是几倍图,一般通过这个值来识别:[UIScreenmainScreen].scale。若为1就1倍图(iphone4/iphone4s是个例外),若为2就是2倍图,若是3就是3倍图。但是现在iphone4/iphone4s都是…

    2022年4月11日
    193
  • 图像文字识别(四):java调用tess4j识别图像文字

    图像文字识别(四):java调用tess4j识别图像文字

    2021年4月9日
    299
  • 前端vue面试题2021_vue框架面试题

    前端vue面试题2021_vue框架面试题一.自我介绍(我是谁来自哪里,今天来的目的,面试的岗位是什么,几年的工作经验,掌握的技术栈有哪些,开发过什么项目,项目中负责的板块是什么)面试官您好!我叫XXX,来自XXX,很荣幸能来我们公司面试,我从事前端开发有3年了,目前掌握的技术有html,css,js,ajax,vue,小程序,参与过各种类型的项目。我做过的项目有A,B,C,D,E那么最近做的一个项目是XXX在这个项目中我主要负责的板块是XXX面试官您这边还有什么想要了解的么。二.项目功能提问vue后台项目(这几个功能点要求

    2022年8月28日
    2
  • 手机修改ntp服务器地址,修改手机ntp服务器ip地址[通俗易懂]

    手机修改ntp服务器地址,修改手机ntp服务器ip地址[通俗易懂]修改手机ntp服务器ip地址内容精选换一换本文介绍使用云手机服务时需要了解的基本概念。云手机是一台包含原生安卓操作系统,具有虚拟手机功能的云服务器,简单来说,云手机=云服务器+AndroidOS。您可以远程实时控制云手机,实现安卓APP的云端运行;也可以基于云手机的基础算力,高效搭建应用,如云游戏、移动办公、直播互娱等场景。服务器是用来提供云手机的物理服务器。云手机目前以服务器您可以直接修改虚…

    2022年5月24日
    61

发表回复

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

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