Ubuntu ati command temperature and gpu usage

Sunday, December 23, 2012 2:48 PM 0 Comments



if u want to check GPU load in the terminal just type 

aticonfig --adapter=0 --od-getclocks

if you want to check gpu temp in the terminal type 

aticonfig --odgt


if you want to add gpu load to conky add this to conky conf.

${font verdana:size=8}${color green}${execi 1 aticonfig --adapter=0 --od-getclocks | grep -i GPU}

0 comments:

ATI Graphic Get GPU Load

Saturday, December 8, 2012 12:06 PM 0 Comments , ,

aticonfig --adapter=0 --od-getclocks | grep -i GPU

0 comments:

Android Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

Wednesday, November 21, 2012 4:10 PM 0 Comments

Error message

Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

Fix it by

add this to manifest.xml file

android:installLocation="preferExternal"

just like this


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.kittinan.blog"
    android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
    android:versionCode="1"
    android:versionName="1.0"
    android:installLocation="preferExternal" >



0 comments:

Generate Android Key

Thursday, November 8, 2012 12:30 PM 0 Comments


keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore  | openssl sha1 -binary | openssl base64

0 comments:

add my user to vboxusers group for use usb

Wednesday, November 7, 2012 2:12 PM 0 Comments

sudo usermod -aG vboxusers <your username>

0 comments:

Best Music Player Ubuntu

Sunday, November 4, 2012 12:29 PM 1 Comments

if you looking for Music player for linux i recommend DeaDBeeF.

it's very clean for me and look like foobar on windows

Check Out it's here

http://deadbeef.sourceforge.net/download.html

DeaDBeeF

1 comments:

Convert Subtitle On Ubuntu

Thursday, November 1, 2012 10:37 PM 0 Comments

I have problem about subtitle encoding SRT format. I found software to convert SRT to SSA.

sudo apt-get install gaupol

0 comments:

Perl Module For LWP

Saturday, February 11, 2012 6:47 PM 0 Comments

Perl Module For LWP

HTML-Parser
HTTP-Date
HTTP-Message
libwww-perl
Net-HTTP
URI

0 comments:

Linux Command Show Threads

Thursday, January 19, 2012 1:26 AM 0 Comments

ps axo pid,ppid,nlwp,cmd

0 comments:

find – linux command cheat sheet

Thursday, January 12, 2012 12:07 AM 0 Comments


Basic Syntax for Find command :
find (name/size/type/access or modified date) ..argument ..argument
Search for file ending .conf
find /etc/ -name *.conf
Search for directories ending with *conf
find /etc/ -type d -name *conf
Search for files ending with .doc and accessed in last 24 hours(or 1 day)
find /home/xyzuser/ -name *.doc -atime -1
Find files modified by minutes
Syntax : find /path/ -mmin
Find files 10 minutes ago
find /etc/ -mmin -10
Find files more then 10 minutes ago
find /etc/ -mmin +10
Find files modified between 10 to 20 minutes ago
find /etc/ -mmin +10 -mmin -20
Find files modified in past 2 days(48 hours)
find /etc/ -mtime -2
Search for files owned by xyz user
find /etc/ -type f -user xyz
Search for directories and change permission to 755
find /home/xyz.com/public_html/ -type d -exec chmod -v 755 {} \;
These are find command example used by every admin most frequently.

0 comments: