You can create GPO and link the GPO to domain or OU containing all the computers.

 

Step 1 : Creating a Security Group

Felix 發表在 痞客邦 留言(0) 人氣()

解決 PHP/mySQL 資料庫讀取中文顯示亂碼或問號

Felix 發表在 痞客邦 留言(0) 人氣()

大部分Linux發行版的默認賬戶是普通用戶,而更改系統文件或者執行某些命令,需要root身份才能進行,這就需要從當前用戶切換到root用戶,Linux中切換用戶的命令是su或su -,下面就su命令和su -命令最大的本質區別給大家詳解一下:  

前者只是切換了root身份,但Shell環境仍然是普通用戶的Shell;而後者連用戶和Shell環境一起切換成root身份了。只有切換了Shell環境才不會出現PATH環境變量錯誤。su切換成root用戶以後,pwd一下,發現工作目錄仍然是普通用戶的工作目錄;而用su -命令切換以後,工作目錄變成root的工作目錄了。用echo $PATH命令看一下su和su - 以後的環境變量有何不同。以此類推,要從當前用戶切換到其它用戶也一樣,應該使用su -命令。 

打個比方:在普通用戶下輸入:

Felix 發表在 痞客邦 留言(0) 人氣()

linux下打印錯誤報告 sudo tail /var/log/httpd/error_log

 

顯示如下錯誤:phpMyAdmin\libraries\php-gettext\gettext.inc on line 177Fatal error:

Felix 發表在 痞客邦 留言(0) 人氣()

很多第一次配置apache的虛擬主機的時候,以為配置第一個虛擬主機完成以後,以後就不會出現什麼問題了。

在配置第一個虛擬主機的時候,重啟apache的時候,都可能會遇到下面的問題:

Felix 發表在 痞客邦 留言(0) 人氣()

為了更好的管理Android應用的用戶界面裡的個組件,Android提供了佈局管理器,通過佈局管理器,Android應用的圖形用戶界面具有良好的平台無關性。這裡什麼叫平台的無關性呢?就是說不同手機。我們知道不同手機它們的屏幕的分辨率、尺寸並不完全相同,而Android的佈局管理器可以根據運行平台來調整組件的大小,而我們所需要做的就是選擇合適的佈局管理器。

 與Swing編程不同的是,Android的佈局管理器本身就是一個UI組件,所有的佈局管理器都是ViewGroup的子類:

 

Felix 發表在 痞客邦 留言(0) 人氣()

在 Android 中,

你可以利用排版 View 的 addView 函數,

將動態產生的 View 物件加入到排版 View 中,

範例如下 :

 main.xml 部份內容
<LinearLayout
android:id="@+id/viewObj"

Felix 發表在 痞客邦 留言(0) 人氣()

上一篇介紹過如何使用LinearLayout進行元件佈局,但是單靠一種排版方式,設計出來的介面並不豐富,所以Android也有提供其它的排版方式,本篇將介紹如何使用RelativeLayout(相對佈局)進行排版。其它的排版方式會陸陸續續的介紹!!

  • 使用RelativeLayout進行元件佈局

   跟上一篇不同的地方是將包覆元件的容器改成RelativeLayout,本範例使用一個RelativeLayout來包覆4個Button元件,並定義一些元件屬性完成元件佈局.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<Button
    android:id="@+id/Button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button1"
    />
<Button
    android:id="@+id/Button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button2"
    android:layout_below="@+id/Button1"
    android:layout_toRightOf="@+id/Button1"
    />
<Button
    android:id="@+id/Button3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button3"
    android:layout_toRightOf="@+id/Button2"
    android:layout_above="@+id/Button2"
    />
 <Button
    android:id="@+id/Button4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button4"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    />
</RelativeLayout>

 

Felix 發表在 痞客邦 留言(0) 人氣()

 

 


Felix 發表在 痞客邦 留言(0) 人氣()

To fetch images on SD Card.Uri will be

android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI

onActivityResult method:

Felix 發表在 痞客邦 留言(0) 人氣()