日韩欧美自拍在线观看-欧美精品在线看片一区二区-高清性视频一区二区播放-欧美日韩女优制服另类-国产精品久久久久久av蜜臀-成人在线黄色av网站-肥臀熟妇一区二区三区-亚洲视频在线播放老色-在线成人激情自拍视频

linux學(xué)習(xí)總結(jié)

出處:wang_4972 發(fā)布于:2011-08-16 10:45:21

  問題1:linux系統(tǒng)的定制和安裝

  step 1> IBM PC按F12,來選擇從CD-ROM起動;

  step 2> Fedora

  問題2:基本命令

  1> shutdown -h now 在關(guān)閉完成后停止(Halt)系統(tǒng)

  shutdown -r now 在關(guān)閉完成后重啟動(Reoot)系統(tǒng)

  2> uname 用途是:print system information

  -a, --all

  print all information, in the following order

  -s, --kernel-name

  print the kernel name

  -n, --nodename

  print the network node hostname

  -r, --kernel-release

  print the kernel release

  -v, --kernel-version

  print the kernel version

  -m, --machine

  print the machine hardware name

  -p, --processor

  print the processor type

  -i, --hardware-platform

  print the hardware platform

  -o, --operating-system

  print the operating system

  --help

  display this help and exit

  --version

  output version information and exit

  3> vi

  其中wq!強(qiáng)制修改

  4> clear

  5> ifconfig

  6> reboot

  7> man

  8> startx

  9> fdisk -l

  10> redhat-config-xfree86

  11> mkbootdisk

  12> cp

  13> mkdir

  14> rm -rf

  15> which

  16> pwd --- print name of current/working directory

  17> find

  18> grep

  問題3:內(nèi)核的重新編譯,目的是支持NTFS系統(tǒng)和支持USB接口的keyboard mouse

  step 1> 必須進(jìn)入到這個(gè)目錄 /usr/src/linux-2.4

  step 2> make menuconfig 選擇NTFS支持和選擇USB keyboard mouse支持,多保存幾次

  step 3> make dep

  step 4> make clean

  step 5> make bzImage

  step 6> make modules

  step 7> make modules_install

  step 8> make install

  如果想將NTFS文件系統(tǒng)改為可寫支持,在make menuconfig中有2個(gè)選項(xiàng)

  NTFS file system support (read only)

  NTFS write support (DANGEROUS)

  問題4:/boot/grub/grub.conf中有從什么系統(tǒng)起動的選擇

  問題5:怎么mount/umount NTFS系統(tǒng)

  step 1> 先通過硬件瀏覽器來看機(jī)器硬盤的DEVICE名,for example,hda5,hda6

  step 2> 先在 /mnt目錄下用mkdir建立ntfs_hda5 ntfs_hda6

  step 3> 掛載

  mount -t ntfs -o utf8 /dev/hda6 /mnt/ntfs_hda6

  mount -t ntfs -o iocharset=cp936 /dev/hda6 /mnt/ntfs_hda6

  卸載

  umount /mnt/ntfs_hda6

  step 4> 自動mount ntfs文件系統(tǒng)的文件是/etc/fstab

  問題6:怎么測試聲卡安裝?

  運(yùn)行 redhat-config-soundcard

  位置在 /usr/bin/redhat-config-soundcard

  問題7:這臺IBM PC機(jī)器顯卡驅(qū)動安裝,只能支持256色,無法支持16bits和24bits

  在BIOS設(shè)置中Video Setup中將Shared System Memory改為8192K,原因是這臺IBM PC用的是集成顯卡,它需要和操作系統(tǒng)共用memory。

  redhat-config-xfree86,在/etc/X11目錄下產(chǎn)生XF86Config,這個(gè)文件很重要,可認(rèn)真看下。

  問題8:網(wǎng)絡(luò)配置舉例

  ifconfig ----- configure a network interface

  ifconfig eth0 add 192.168.2.28

  ping 192.168.2.29

  mount 192.168.2.29:/opt/STM/ST40Linux-1.0/devkit/sh4/target /mnt/cdrom

  ifconfig eth0 down

  問題9:打包/解包

  打包

  tar cdvf [目標(biāo)] [源]

  "c" create

  解包

  tar zxvf RealPlay9.tar.gz

  "x" extract

  Z用compress程序來壓縮和解壓

  z用zip程序來壓縮和解壓

  問題10:用Mozilla瀏覽器上網(wǎng)

  當(dāng)網(wǎng)卡驅(qū)動安裝完畢后,在Mozilla中 Edit->Preferences->Advanced->Proxies中設(shè)置

  HTTPProxy: lps1.hkg.st.com Port 8080

  問題11:軟件包管理

  1> redhat-config-packages

  2> rpm

  -q The general form of an rpm query command

  -i This install a new package

  問題12:mp3播放

  step 1> 首先知道 XMMS是 an audio player for X

  step 2> which xmms

  step 3> 得到

  xmms-mp3-1.2.8-3.p.i386.rpm

  step 4> rpm -i xmms-mp3-1.2.8-3.p.i386.rpm

  step 5> xmms amour.mp3

  問題13:movie播放

  安裝RealPlayer.i586.rpm

  問題14:

  / 根目錄

  ./ 當(dāng)前目錄

  / 上目錄

  問題15:中文輸入

  step 1> 在系統(tǒng)設(shè)置->語言中選擇中文

  step 2> Ctrl+空格

  問題16:webmail1.sha.st.com收郵件

  問題17:無法支持瀏覽中文目錄和文件?

  在mount時(shí)增加 -o utf8

  UTF8 is the filesystem safe 8-bit encoding of unicode that used by the console.

  問題18:進(jìn)程管理

  ps -A

  ps -a

  kill ID

  問題19:安裝星際譯王

  問題20:與公司ftp服務(wù)器建立連接,通過ftp進(jìn)行文件傳輸

  step 1> ftp 138.198.199.186

  step 2> user name: xiangning_lai password: xiangning_lai

  文件傳輸功能的實(shí)現(xiàn)參閱<>

  或者當(dāng)進(jìn)入ftp>提示狀態(tài)后敲help

  問題21:如何編寫純文本文件?

  保存文件為*.txt即可。

  問題22:安裝網(wǎng)絡(luò)打印機(jī)2300

  IP 138.198.199.44

  PostScript Printer

  step 1> 系統(tǒng)設(shè)置->打印->新建->添加一個(gè)新打印隊(duì)列->…

  step 2> 隊(duì)列類型選擇聯(lián)網(wǎng)的CUPS(IPP)

  step 3> 服務(wù)器 138.198.199.44

  step 4> 打印機(jī)選擇 PostScript Printer

  問題23:如何在linux環(huán)境下進(jìn)行ST軟件開發(fā)?

  step 1> 安裝st20 toolset for linux;

  step 2> 閱讀st20 toolset for linux的安裝文檔 install.htm

  Before the tools are used, there are several environment variables that must be set.

  ST20ROOT must point to the root of the installed toolset (/opt/STM/ST20R2.0.5 in the above example)。

  The PATH should contain /opt/STM/ST20R2.0.5/bin.

  The LD_LIBRARY_PATH should contain /opt/STM/ST20R2.0.5/lib.

  step 3> 用source來設(shè)置環(huán)境變量

  其它和在windows環(huán)境開發(fā)類似了。

  問題24:使用Emacs和kwrite來編寫

  問題25:推薦網(wǎng)站

  https://www.linuxeden.com

  https://www.linuxforum.net

  https://www.stlinux.com

關(guān)鍵詞:linux學(xué)習(xí)總結(jié)linux

版權(quán)與免責(zé)聲明

凡本網(wǎng)注明“出處:維庫電子市場網(wǎng)”的所有作品,版權(quán)均屬于維庫電子市場網(wǎng),轉(zhuǎn)載請必須注明維庫電子市場網(wǎng),http://www.hbjingang.com,違反者本網(wǎng)將追究相關(guān)法律責(zé)任。

本網(wǎng)轉(zhuǎn)載并注明自其它出處的作品,目的在于傳遞更多信息,并不代表本網(wǎng)贊同其觀點(diǎn)或證實(shí)其內(nèi)容的真實(shí)性,不承擔(dān)此類作品侵權(quán)行為的直接責(zé)任及連帶責(zé)任。其他媒體、網(wǎng)站或個(gè)人從本網(wǎng)轉(zhuǎn)載時(shí),必須保留本網(wǎng)注明的作品出處,并自負(fù)版權(quán)等法律責(zé)任。

如涉及作品內(nèi)容、版權(quán)等問題,請?jiān)谧髌钒l(fā)表之日起一周內(nèi)與本網(wǎng)聯(lián)系,否則視為放棄相關(guān)權(quán)利。

全志代理A50板 安卓9.0 Linux QT 代A33 高清視頻方案
廣告
OEM清單文件: OEM清單文件
*公司名:
*聯(lián)系人:
*手機(jī)號碼:
QQ:
有效期:

掃碼下載APP,
一鍵連接廣大的電子世界。

在線人工客服

買家服務(wù):
賣家服務(wù):
技術(shù)客服:

0571-85317607

網(wǎng)站技術(shù)支持

13606545031

客服在線時(shí)間周一至周五
9:00-17:30

關(guān)注官方微信號,
第一時(shí)間獲取資訊。

建議反饋

聯(lián)系人:

聯(lián)系方式:

按住滑塊,拖拽到最右邊
>>
感謝您向阿庫提出的寶貴意見,您的參與是維庫提升服務(wù)的動力!意見一經(jīng)采納,將有感恩紅包奉上哦!