Ⅰ "mandate"是什麼意思
mandate 英[ˈmændeɪt] 美[ˈmænˌdet]
n. 授權; 命令; 委任; 任期;
vt. 託管; 批准;
vi. 強制執行; 委託辦理;
[其他] 第三人稱單數:mandates 現在分詞:mandating 過去式:mandated過去分詞:mandated
Ⅱ 急需以下內容翻譯!各位高手幫幫忙啊!中文翻譯成英文!不要機譯!先謝了!
Fourth, several representative embedded operating system comparison
(1) VxWorks
WindRiver VxWorks operating system companies in the United States in 1983 the design and development of an embedded real-time operating systems (RTOS), Tornado embedded development is a key component of the environment. Good sustainable development capacity, high-performance core and user-friendly development environment, in the embedded real-time operating system fields occupy a place graally. VxWorks can be cut with micro-kernel structure; efficient task management; flexible mandate communication; microsecond interrupt handling; support POSIX 1003.1b real-time extensions to support multiple physical media and standards, and complete TCP / IP network protocols.
But its high price. The operating system itself is proprietary, as well as the development environment, a higher than normal price, and typically costs more than 100,000 yuan to set up a development environment available for general application to every other charge royalties. General unreasonable for the source code, binary code only. Because they are dedicated operating system, the need for specialized technical staff in the development of technology and maintenance, software development and maintenance costs are very high. A limited number of hardware support.
(B) Windows CE
Windows CE and Windows series better compatibility, Windows CE is a big advantage of the promotion. WinCE3.0 which is a capacity for small, mobile, intelligent, 32, understand the molar equipment for real-time embedded operating system. For the establishment for handheld devices, wireless devices dynamic applications and services provides a feature-rich operating system platforms, it can in a variety of processor architecture on the run, and usually applies to those who have some memory space restrictions equipment. It is from the limited resources for the overall design of the platform's multi-threading, complete priority, multi-task operating system. Its molar design allows it to the Pocket PC controller for instrial users customized electronic equipment. The basic core operating system needs at least 200 KB of ROM. As the volume of embedded procts, the costs have more stringent requirements, processor space should be part of the small as possible. System Disk and the number of available memory to the limit, and embedded operating system running on the limited memory (usually in the ROM or flash memory), and therefore on the size of the operating system, and put forward a high efficiency requirements . From a technical standpoint, as an embedded operating system Windows CE has a lot of shortcomings: no open-source code, application developers to be very difficult to achieve proct customization; efficiency, power consumption performance is not outstanding, and in Windows Like the occupation of the system memory, using proceres huge; right licensing fees to companies is taken into account.
(3) Embedded linux
This is the embedded operating system a new member of its greatest feature of the source code is open and follow the GPL agreement, in the past year or so become a hotspot, according to IDG forecasts Embedded Linux will account for the next two years embedded operating system share of 50 per cent.
Because of its open source code, it can be modified to meet their applications, and Chaxi also very easy. Comply with the GPL, the need for the application of each pay permit fees. A large number of applications available. Most of them follow the GPL, the open source and free of charge. Little can be modified for the user's own system. A large number of outstanding free development tools, and follow the GPL is the open-source. A large group of developers. Without specialized personnel, as long as understood Unix / Linux and C language can be. With the popularity of Linux in China, more and more such talents. Therefore, software development and maintenance costs low. Excellent networking capabilities, which is particularly important in the Internet era. Stability - this is Linux itself have a great advantage. Jinghan core operation for less resources, and is very suitable for embedded applications.
The large number of hardware support. Embedded Linux, and there is no essential difference between ordinary Linux, PC hardware used on virtually all embedded Linux support. Various hardware and driver source code can be for users to prepare their own proprietary hardware drivers have a great convenience.
In the embedded Linux operating system is a shortcoming of the Linux system to provide real-time performance need to add real-time software moles. These moles run the operating system kernel space is the realization of scheling strategy, the hardware interrupt abnormal and part of the implementation process. As a result of these real-time software mole is the core of the operating room, coding errors could undermine the entire operating system thereby affecting the reliability of the system, which will be for real-time applications is a very serious weakness.
好多啊,累人,下次記得懸賞多點.
Ⅲ 說說常用的UNIX命令
下文列出了常用的unix命令。
more less:
less的作用與more十分相似,都可以用來瀏覽文字檔案的內容,不同的是less允許使用者往回卷動以瀏覽已經看過的部份,同時因
為less並未在一開始就讀入整個檔案,因此在遇上大型檔案的開啟時,會比一般的文書編輯器(如 vi)來的快速。
unix種類[圖]
>> Linux ‖ BSD ‖ Solaris ‖ SCO ‖ HP-UX ‖ AIX ‖ AS400 ‖ Tru64 ‖ IRIX ‖ MacOsX
UNIX命令
一、UNIX命令格式
1、UNIX命令提示符
在命令行下,操作系統會顯示一提示符,提示用戶在此提示符後可以輸入一行命令。不同的Shell有不同的預設提示符:
B Shell和K Shell的預設提示符為"$";
C Shell的預設提示符為"%";
但當以root用戶登錄時,系統提示符統一預設為"#"。
用戶可以更改自己的預設Shell和提示符。
2、基本命令格式
在Shell提示符下,就可以輸入UNIX命令。UNIX命令的基本格式如下:
command 參數1 參數2 ... 參數n
UNIX命令由一個命令(command)和零到多個參數構成,命令和參數之間,以及參數與參數之間用空格隔開。UNIX的命令格式和DOS的命令格式相似,但UNIX的命令區分大小寫,且命令和參數之間必須隔開。如:對DOS來說是以下四條命令是相同的:
cd\tmp
cd \tmp
CD \tmp
cd \Tmp
對UNIX操作系統來說,改變目錄的命令也是cd命令,以下是正確的UNIX cd命令:
cd /tmp
cd /Tmp
但tmp和Tmp是兩個不同的目錄。以下兩條命令:
cd/tmp
CD /tmp
已經不是cd命令了。
3、在一行中運行多個命令
可以在一行中輸入多個命令,命令間用「;」分開,如:
mkdir tmp ; cp file1 tmp/file2 ; ls -l tmp
UNIX會順序執行以上三條命令。
4、在後台運行程序
要讓程序在後台執行,只需在命令行的最後加上「&」符號。
[例1] 在後台運行find命令,在當前目錄及其子目路下查找文件名為abc的文件。
執行命令和立即顯示的內容如下:
$ find . -name abc -print&
10722
$
...
10722表示進程號(PID)。當find命令在後台執行完後,會顯示結果。
當在後台運行命令時,最好將其輸出重定向輸出到一個文件中去,以便以後檢查。
[例2] 在後台運行find命令,在當前目錄及其子目路下查找文件名為abc的文件並將結果存到myfind文件中。
執行命令如下:
$ find . -name abc -print>;myfind&
在運行後台程序的同時可以繼續輸入命令。
5、nohup命令
當終端退出後,由該終端啟動的後台程序自動退出。要想終端退出後程序不停止運行,則要用nohup命令啟動後台程序。如對於例2的命令加入nohup後變為:
$ nohup find . -name abc -print>;myfind&
二、特殊按鍵
在UNIX命令操作中有一些特殊鍵,列表如下:
Ctrl + d 結束鍵盤輸入或退出當前shell
Del 中斷鍵,停止當前動作回到shell
Ctrl+s 暫停屏幕輸出
Ctrl+q 繼續屏幕輸出
Ctrl+u kill鍵,刪除游標所在行的所有字元
Esc 結束當前的操作狀態(如vi)
三、UNIX常用簡單命令
下表列出了幾個簡單的UNIX命令:
解釋 UNIX命令 命令舉例
查看幫助信息 man mandate
查看日期 date date
顯示日歷 cal cal1998
顯示大寫大字 bannerbanner 「ABCD」
計算器 bc bc
修改口令 passwdpasswd
查看誰在使用系統 whowho
查看我是誰 who am iwho am i
顯示用戶信息 fingerfinger 用戶名
清除屏幕 clearclear
1、man命令 - 查看幫助信息
舉例:
查看man的使用方法: man
查看finger命令的幫助信息: man finger
2、date命令 - 顯示、修改日期和時間
顯示時間的命令如下:
date
顯示如下:
Mon Aug 17 13:43:14 NST 1998
表示NST標准時間,1998年8月17日13:43:14,星期一。
3、cal命令 - 顯示日歷
舉例:
顯示1998年全年日歷: cal 1998
顯示1998年8月日歷: cal 8 1998
4、banner命令 - 顯示大寫大字
舉例:在屏幕上用大字顯示「HUAWEI」,命令如下
banner "HUAWEI"
5、bc命令 - 簡單計算器
bc命令可以進行加、減、乘、除、求模、乘方運算,運算符分別為「+」「-」「*」「/」「%」「^」。bc使用舉例如下
bc
以後輸入算式即可,如:
1234 * 3 + 2^4
按回車顯示結果,以後等待輸入其它算式。按<Ctrl>;+d鍵退出bc。
6、passwd命令 - 修改口令
要修改自己的口令,只需運行:
passwd
以後系統會提示輸入原來口令,並輸入新口令。
7、who命令 - 查看正在使用UNIX的用戶
用法如下:
who
系統會顯示正在使用UNIX的用戶名、終端號和登錄時間。要查看使用者自己的信息,運行:
who am i
8、finger命令 - 顯示用戶信息
finger命令比who命令顯示的信息量大,功能強。基本使用方法如下:
顯示登錄信息: finger
顯示smith用戶詳細信息: finger smith
9、clear命令 - 清除屏幕
clear
四、UNIX用戶間簡單通訊命令
UNIX提供許多方式讓用戶相互通信,它允許你以文本的方式發送及接收信息。你可以傳遞信息給其他用戶、所有用戶、或自己。信息來源可以是文本文件或直接由鍵盤輸入的內容。
(一)write 命令
可使用write 實用程序向已登錄的另一個用戶發送一條報文,當對方也使用write 命令時,雙方之間就建立了通信。
當用戶使用write 命令時,就在對方用戶終端上顯示提示信息。write 命令的格式如下:
write destination-user [terminal]
其中,destination-user是你想與之通信的用戶注冊名,通常使用who 命令查看其注冊名。如果對方在多台終端上登錄,可通過用terminal 來控制write 的報文送向指定的終端。為了建立與其他用戶的雙向通話,用戶和對方每次必須執行write 命令,且必須指定注冊名。一般在使用UNIX 進行通話時,通信雙方有一些約定:用「o」 表示結束一條報文,「oo」 表示結束這次通信,用ctrl-d 退出write 命令。
[例1] UNIX上兩用戶alex 和jenny 通過write命令通信。
在alex的所在終端上(<CR>;表示回車):
$ write alex <CR>;
Hi Alex, are you there? o<CR>;
Message from Alex (tty11)[Sat Jan 5 15]….
Yes Jenny, I』m here. o<CR>;
……
Thank you ,Alex, bye! oo<CR>;
Ctrl-d
$
該例說明了使用write 命令實現Alex 和Jenny 的通信過程。首先Jenny 使用前兩行向Alex發送了一條報文,接下來的兩行是Alex 發送的報文Jenny 收到了,省略號表示他們的通信繼續。最後,Jenny 用thank you,Alex,bye!oo 告訴Alex沒有話要說了,並在下一行開始鍵入ctrl-d 來退出write 並回到shell。
(二)使用talk雙方對話
talk 命令是一個虛擬通信命令,它允許登錄雙方通過鍵盤實時對話,其格式如下:
talk user-name [terminal]〈CR〉
注意,使用talk 進行雙方對話時,雙方使用的機器體系結構必須相同。當對方給出響應的talk命令後,雙方終端上都顯示
[connect established]
時,雙方可雙工通信了。雙方可以以任意的速度從鍵盤輸入,talk 把你的輸入一行一行的顯示在你和對方的屏幕上。用<Delete>;退出talk 。
(三)使用mesg 拒絕和允許接收報文
mesg 命令允許或拒絕接收由其它終端發來的write 和talk通訊信息。mesg命令在本地終端運行,其使用格式如下:
mesg [y] [n]〈CR〉
其中,y 表示允許接收,n 表示拒絕接收。如既不給出y 也不給出n ,則報告現在的許可狀態。例:
[例1] 顯示狀態:
$mesg <CR>;
則命令的執行結果為:
is y
或 is n
[例2] 拒絕接收由其它終端發來的write和talk通訊信息:
$mesg n
$mesg
is n
(四)wall 廣播式消息傳遞
所有登錄用戶都可收到該消息。僅超級用戶使用該命令。wall命令有以下幾種格式:
# wall
# wall filename
# wall 「send a messageto all the people。」
2.4 注銷(退出UNIX系統)
在每次使用完後,一定要進行注銷,以防他人通過你的帳號進入系統,並保證系統的完整性。注銷過程如下:在UNIX提示符下,運行:
$ exit
或
$ logout
或直接按鍵:
Ctrl+d。
由於UNIX操作系統的不同,注銷的命令也可能不同。
--------------------------------------------------------------------------------
3.5 UNIX文件存取許可權
一、文件的存取許可權
UNIX文件的存取有三種許可權:
許可權 普通文件的存取許可權目錄的存取許可權
R 具有讀取文件的權利能讀取文件名稱
W 具有寫入文件的權利能建立和刪除文件,可以改變文件名
X 具有執行文件的權利能使用該目錄下的文件(如cd命令)搜索文件等
二、能夠存取文件的用戶類型
有三種類型的用戶可以存取文件:
用戶類型 說明
owner 文件的屬主(擁有者)
group 用戶組內成員
other 其他用戶(非owner和非group)
每種類型的用戶都有三種文件存取許可權:r、w、x。
三、文件存取許可權的顯示
可以通過」ls -l」命令顯示,如:
$ ls -l file1
顯示如下:
-rwxr-xr-- 2 wjm newservice 321 Oct 1709:33 file1
上行中:
第2-4字元」rwx」表示此文件屬主wjm對文件file1的權利為」可讀、可寫、可執行」;
第5-7字元」r-x」 表示此用戶組newservice內的用戶對文件file1的權利為:
」可讀、不可寫、可執行」;
第8-10字元」r--」 表示其他用戶對文件file1的權利為」可讀、不可寫、不可執行」
四、文件存取許可權的修改
用chmod命令修改文件的存取許可權,chmod命令的格式如下:
格式1:chmod symbolic_mode file…
格式2:chmod absolute_mode file…
(一)格式1:符號模式(symbolic_mode), 符號模式的命令格式如下:
chmod [who] op permision file…
who項表示用戶類型,它的內容為以下一項或多項:
U 文件屬主(user --- owner)
G 用戶組(group)
O 其他人(other)
A 所有人(all)
op項表示動作:
+ 表示要加上permission指定的權利
- 表示要取消permission指定的權利
permission項為存取許可權,它的內容為以下一項或多項:
r 表示可讀
w 表示可寫
x 表示可執行
舉例:
chmod u+w test report 屬主對test和report文件「可寫」
chmod u-x abc.c 屬主對abc.c文件不可執行
chmod u+rwx myfile1 屬主對myfile1「可讀、可寫、可執行」
chmod ugo+rwx myfile2 任何人都對myfile1「可讀、可寫、可執行」
(二)格式2:絕對模式(absolute_mode), 符號模式的命令格式如下:
chmod xyz file…
x、y、z分別是0-7的數字,分別表示屬主、用戶組、其他人對該文件的存取許可權。x、y、z的取值公式均為:
a*4 + b*2 +c
其中,
a=1分別表示可讀,a=0表示不可讀;
b=1分別表示可寫,b=0表示不可寫;
c=1分別表示可執行,c=0表示不可執行;
舉例:
chmod 751 ncp 屬主對ncp擁有「可讀、可寫、可執行」的全部權利;組內成員對ncp只有「可讀、可執行」的權利;其他用戶對ncp只有「可執行」的權利。
五、改變文件屬主及文件所在組
改變文件屬主的格式如下:
chown 屬主名 文件名
必須對文件具有write權利才可改變文件的屬主。
改變文件所在組的格式如下:
chgrp 組名 文件名
必須是文件的屬主或supervisor才能改變文件組別的歸屬。
舉例:
chown wjm test1 將文件test1的屬主改為wjm
chgrp newservice test1 將文件test1的用戶組改為newservice
3.6 UNIX重定向與管道
UNIX重定向 將文件的標准輸出重新定向輸出到文件,或將數據文件作為另一程序的標准輸入內容。重定向符號如下:
< 重定向輸入
>; 重定向輸出
>;>; 重定向輸出並追加到尾部
例如:
ls -l >; file1 將ls -l命令顯示的內容存到file1中,
ls >;>; file1 將ls 命令顯示的內容附加存到file1的尾部
grep abc < file1 將file1的內容作為grep abc命令的輸入
其中,">;"和">;>;"為輸出重定向符,">;"將輸出內容存到重定向文件中,若文件存在,則先刪除原有內容;">;>;"將輸出內容存到重定向文件的尾部。
UNIX管道 將一文件的輸出作為另一文件的輸入。管道符號如下:
| 將左邊命令的輸出,作為右邊命令的輸入
例如:
ls|more 將ls的輸出作為more命令的輸入
ps -ef|grep smith ps -ef的輸出作為grep smith命令的輸入
3.7 UNIX文件系統常用命令
UNIX命令 UNIX命令舉例 類似DOS命令
顯示當前目錄 pwd pwdcd
改變目錄 cd cd/usr cd c:\usr
進入家目錄 cd cd
創建目錄 mkdirmkdir abc md abc
刪除空目錄 rmdirrmdir abc rd abc
刪除目錄及其內容 rm -rrm -r abc deltree abc
顯示目錄內容 ls lsabcls -l abc(文件長列表)ls -aabc(所有類型文件)ls -d *(不進子目錄) dir abc
顯示文本文件內容 catcat file1.c type file1.c
一次一屏顯示文本文件內容more more file1.c
拷貝文件 cp cpfile1 file2 file1 file2
移動(重命名)文件 mv mv call.test call.listmove call.tst call.lstren call.test bbb
刪除文件 rm rmcall.list delcall.lst
一、pwd命令
pwd命令用來顯示當前目錄路徑,命令如下:
pwd
二、cd命令
cd命令用於改變當前的目錄,如:
命令舉例 說明
cd /usr/smith 改變到/usr/smith目錄
cd ../wjm 改變到父目錄下的wjm子目錄
cd exam1 改變到當前目錄下的exam1子目錄
cd 改變到家目錄
不帶參數的cd命令表示進入家目錄,這點與DOS有本質區別。
三、rm命令
rm命令可以刪除文件及目錄,舉例如下:
命令舉例 說明
rm file2 刪除當前目錄下的文件file2
rm file* 刪除當前目錄下以file開頭的文件
rm -r /usr/wjm/exam2 刪除目錄/usr/wjm/exam2及其內容
四、ls命令
ls命令可以顯示目錄內容,命令格式如下:
ls -選項 文件名
其中的常用選項說明如下:
-l 長列表顯示目錄內容
-a 顯示所有類型文件,包括隱含文件
-d 如果顯示內容包含目錄名,則只顯示目錄名字不顯示目錄內容
命令舉例如下:
命令舉例 說明
ls 顯示當前目錄內容
ls file* 顯示除當前目錄下以file開頭的文件
ls -l /usr/wjm/exam2 長列表顯示目錄/usr/wjm/exam2內容
ls -adl 顯示當前目錄內容(同時帶-l、-d、-a參數)
[注] 」ls -l」命令顯示格式如下:
drwxrwxr-x 2 smith group 48 Jan 05 1998 john
-rwxr-xr-- 1 wjm newservice 321 Oct 17 09:33 file2
上面每行中:
第一列:
第1個字元表示文件的類型(d表示目錄,-表示普通文件);
第2-4字元表示文件屬主對此文件的訪問許可權(如:「rwx」和「rwx」);
第5-7字元表示用戶組對此文件的訪問許可權(如:「rwx」和「r-x」);
第8-10字元表示其他用戶對此文件的訪問許可權(如:「r-x」和「r--」);
其中,訪問許可權用三個字元表示,順序是「rwx」,「r」表示可讀、「w」表示
可寫、「x」表示可執行。若某項禁止訪問則為「-」,如:「r-x」表示可讀、
不可寫、可執行;
第二列:此文件的鏈接數(如:2和1);
第三列:此文件的屬主名(如:smith和wjm);
第四列:用戶組名(如:group和newservice);
第五列:文件所佔位元組數(如:48和321);
第六至八列:最後修改的日期和時間(如:「Jan 05 1998」和「Oct 17 09:33」);
第九列:文件名(如:john和file2)。
五、mkdir、rmdir、cat、more、cp、mv命令
這些命令和DOS的相應命令功能和用法基本一致,它們和DOS命令的對應關系如下:
UNIX命令 DOS命令
mkdir mkdir或md
rmdir rmdir或rd
cat type
more more
cp
mv move或ren
本文來自CSDN博客:http://blog.csdn.net/chinayuan/archive/2008/10/14/3072562.aspx
Ⅳ advance mandate
IAMP 已經在前進它的命令方面受到來自二個接近相關的組織的有價值的協助: IAP 和 IAC。
Ⅳ mandate是什麼意思
mandate
英 ['mændeɪt]
美 ['mændet]
n. 授權;命令,指令;委託管理;受命進行的工作
vt. 授權;託管
Ⅵ mandate business case的區別
mandate、business、case的區別為:指代不同、語法不同、側重點不同。
一、指代不同
1、mandate:授權。
2、business:商業。
3、case:案例。
二、語法不同
1、mandate:a document giving an official instruction or command給予官方指示或命令的文件。
2、business:business的基本意思是指某人為謀利(尤為自己)的「日常工作」或「職業」,引申可表示「職責,事務」。business現在多用來指「商業,生意,貿易」(不可數),引申可表示「商店,商行」(可數)等。
3、case:case的基本意思是「事例,實例」,指作為一個參照來讓人知道或了解的某物或某事,或指一個客觀存在的事實,即「實情,情況」。
三、側重點不同
1、mandate:多指大規模的買賣或易貨關系。
2、business:指包括售貨、購貨、換貨在內的綜合商業活動,方式可以是批發或零售。
3、case:指買賣雙方經過交涉達成協議成交。
Ⅶ Linux時間12小時制和24小時制轉化命令.
Linux下使用date命令顯示時間,其中,
date
+%r是顯示12小時制的;
date
+%R是顯示24小時制的。
要想默認修改顯示時間為24小時的,vi
~/.bashrc,輸入
alias date='date "+%a %b %d %H:%M:%S %Z %Y"'然後保存退出。
Ⅷ 請問security mandate是什麼意思
登機的時候時候只要登機卡就好了,護照都不用
CHECK IN的時候會查護照,但是有這種ID就足夠了
Ⅸ the mandate of heaven是什麼意思
the mandate of heaven
天命
mandate[英][ˈmændeɪt][美][ˈmænˌdet]
n.授權; 任期; 委任; 命令;
vt.託管; 批准;
vi.強制執行; 委託辦理;
第三人稱單數:mandates過去分詞:mandated現在進行時:mandating過去式:mandated
易混淆單詞:MANDATEMandate
例句:
The decision came less than three hours before the mandate was to expire.
這一決定是在授權滿期前不到三個小時的時候作出的。
Ⅹ mandate和authorize都有「授權"的意思,分別怎麼用
mandate和authorize都有「授權"的意思,用法上不同,mandate一般指政府授權,而authorize一般指企業授權等。
一、mandate簡明釋義
(1)作名詞:(政府或組織等經選舉而獲得的)授權,(政府的)任期,委託書,授權令。
(2)作動詞:強制執行,委託辦理,授權。
二、mandate專業釋義
(1)上級法院給下級法院的)指令,正式命令,(上級法院給下級法院的)命令,多用於政府授權,比較正式。
(2)例句:The president and his supporters are almost certain to read this vote as a mandate for continued economic reform.
三、authorize簡明釋義
(1)作動詞:批准,授權。
(2)例句:An original signer canauthorizethe multi proxy signers.
(10)linuxmandate命令擴展閱讀:
除了上述兩個單詞,還有其他的授權英文單詞
1、empowe,作動詞,授權。給(某人)..的權力,增加(某人的)自主權,使控制局勢。
2、warrant,作名詞,執行令,授權令,(接受款項、服務等的)憑單,許可證,(做某事的)正當理由,依據。