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

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

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

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 元素守恒计算方法_leetcode免费吗

    元素守恒计算方法_leetcode免费吗给定一个整数数组 nums,按要求返回一个新数组 counts。数组 counts 有该性质: counts[i] 的值是 nums[i] 右侧小于 nums[i] 的元素的数量。示例:输入:nums = [5,2,6,1]输出:[2,1,1,0] 解释:5 的右侧有 2 个更小的元素 (2 和 1)2 的右侧仅有 1 个更小的元素 (1)6 的右侧有 1 个更小的元素 (1)1 的右侧有 0 个更小的元素提示:0 <= nums.length <= 10^5-10^4

  • Java类的初始化顺序_java静态类初始化顺序

    Java类的初始化顺序_java静态类初始化顺序package com.qcby;public class InitializeDemo { private static int k = 1; private static InitializeDemo t1 = new InitializeDemo(“t1”); private static InitializeDemo t2 = new InitializeDemo(“t2”); private static int i = print(“i”); pri

  • vue中父组件向子组件传值

    vue中父组件向子组件传值首先在以下案例中,App.vue是父组件,Second-module.vue是子组件。总体来说,父传子就是这四个步骤:父组件的data中定义值,引入并调用子组件,在引用的子组件的标签上通过v-bind指令给子组件传值,子组件通过在data中定义的props属性接收父组件传过来的值然后应用到子组件里。首先,值肯定是定义在父组件中的,供所有子组件共享,所以要在父组件的data中定义值:…

  • css圆角边框怎么设置颜色_word图片怎么设置圆角大小

    css圆角边框怎么设置颜色_word图片怎么设置圆角大小总结起来很简单,设置css圆角边框就是设置border-radius的值,设置的数字不同,圆角的大小也不同。通过设计css圆角边框,我们就不需要再用带框的背景图片,这不仅让页面设计更加简单,同时也有利于提升页面加载的速度。本文给大家简单介绍下css圆角边框怎么设置,大家可以参考,也可以直接拿过去使用,当然要修改下具体的参数。上面的css代码,大家可以直接拿去用,至于像15px、50px等这些数据,大家可以通过测试看看具体需要多大数字,这里给出的数字只是参考。圆角边框的最基本用法就是设置四个相同弧度的圆角。.

    2022年10月23日
  • python 命名规范

    python 命名规范python变量命名规则:变量名只能包含字母、数字和下划线。变量名可以字母或下划线开头,但不能以数字开头,例如,可将变量命名为message_1,但不能将其命名为1_message。 变量名不能包含空格,但可使用下划线来分隔其中的单词。例如,变量名greeting_message可行,但变量名greetingmessage会引发错误。 不要将Python关键字和函数名用作变量名,即不要…

  • 课程实验 【八路抢答器】

    课程实验 【八路抢答器】基于外部中断课程实验【八路抢答器】#defineucharunsignedchar#defineuintunsignedintsbitLED_main=P3^6;sbitKey=P3^0;ucharcodetabie[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};ucharmain_go=0;//主线voidInit_E…

    2022年10月20日

发表回复

您的电子邮箱地址不会被公开。

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