大家是否常常因為電腦卡頓而感到煩惱呢?為什么前陣子用的好好的,現在怎么就卡了,電腦卡頓主要有幾個因素,今天小編就教大家幾項電腦的優化!
一、C盤空間爆滿
可能有些小伙伴用電腦的時候總是喜歡往c盤裝東西,或者往桌面放各種文件,都會導致c盤爆滿。這時候你可能就會問了,不放c盤為什么放桌面也不行呢?答:因為桌面的路徑就是在c盤里面的C:\Users\Administrator\Desktop,這個就是桌面的路徑。所以大家一般在安裝軟件的時候注意不要一路狂點下一步,小型軟件可以安裝到c盤,大型軟件建議安裝在其它盤,還有文件也儲存在其它盤(例如D、E、F盤)。如果覺得放在其它盤的文件不方便打開,也可以創建個快捷圖標拉到桌面,方便打開。
二、CPU溫度過高
溫度過高也會導致電腦卡頓,因為電腦溫度超過一定范圍后系統就會降頻,從而達到保護硬件的目的。如果你的電腦溫度過高可能是散熱出了問題,如果是筆記本的話可以使用風扇或者散熱架給電腦抽風,涼快涼快。
三、硬件
如果你的硬件比較老的情況下,可以更換部分硬件,從而使電腦達到流暢的目的。硬件配置查看推薦使用魯大師查看。
四、系統
配置真的比較老了可以裝一些XP系統,或者Windows7系統,沒必要上Windows10了,因為有些老機器上Windows10會很慢很慢,最好停留在Windows7或者XP系統才是最佳體驗。用戶還可以去網上找一些舊版本的軟件安裝使用,那樣可以特別的流暢。
五、不推薦安裝殺毒軟件
想必大家都會在電腦上安裝殺毒軟件吧,其實這些軟件會拖慢你電腦的速度,占用一部分資源,甚至后臺工作的時候也會占用大部分系統性能,導致電腦無法動彈。所以小編建議大家瀏覽網頁的時候不要點擊彈窗廣告和進入惡意網站,不裝來歷不明的軟件。假如你經常使電腦中毒或者其它情況,也可以安裝個360,在需要它的時候就開啟,不需要的時候可以把它停了,這樣也比較有保障。
Linux下安裝(CentOS 7.x)
Windows下安裝
不滿足方式一的話建議就別在windows上玩,免得麻煩而且windows在上學習沒啥用,當然若果你執迷不悟那就升級系統吧:Win10家庭版升級至Win10專業版,控制面板-系統和安全-系統-更換產品密鑰 “VK7JG-NPHTM-C97JM-9MPGT-3V66T”
mac系統安裝見官方文檔或百度
基本啟用
$ docker --help Usage: docker COMMAND A self-sufficient runtime for containers Options: --config string Location of client config files (default "/root/.docker") -D, --debug Enable debug mode --help Print usage -H, --host list Daemon socket(s) to connect to (default []) -l, --log-level string Set the logging level ("debug", "info", "warn", "error", "fatal") (default "info") --tls Use TLS; implied by --tlsverify --tlscacert string Trust certs signed only by this CA (default "/root/.docker/ca.pem") --tlscert string Path to TLS certificate file (default "/root/.docker/cert.pem") --tlskey string Path to TLS key file (default "/root/.docker/key.pem") --tlsverify Use TLS and verify the remote -v, --version Print version information and quit Management Commands: container Manage containers image Manage images network Manage networks node Manage Swarm nodes plugin Manage plugins secret Manage Docker secrets service Manage services stack Manage Docker stacks swarm Manage Swarm system Manage Docker volume Manage volumes Commands: attach Attach to a running container build Build an image from a Dockerfile commit Create a new image from a container's changes cp Copy files/folders between a container and the local filesystem create Create a new container diff Inspect changes on a container's filesystem events Get real time events from the server exec Run a command in a running container export Export a container's filesystem as a tar archive history Show the history of an image images List images import Import the contents from a tarball to create a filesystem image info Display system-wide information inspect Return low-level information on Docker objects kill Kill one or more running containers load Load an image from a tar archive or STDIN login Log in to a Docker registry logout Log out from a Docker registry logs Fetch the logs of a container pause Pause all processes within one or more containers port List port mappings or a specific mapping for the container ps List containers pull Pull an image or a repository from a registry push Push an image or a repository to a registry rename Rename a container restart Restart one or more containers rm Remove one or more containers rmi Remove one or more images run Run a command in a new container save Save one or more images to a tar archive (streamed to STDOUT by default) search Search the Docker Hub for images start Start one or more stopped containers stats Display a live stream of container(s) resource usage statistics stop Stop one or more running containers tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE top Display the running processes of a container unpause Unpause all processes within one or more containers update Update configuration of one or more containers version Show the Docker version information wait Block until one or more containers stop, then print their exit codes Run 'docker COMMAND --help' for more information on a command. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
基本命令
倉庫相關操作
docker pull #從遠程倉庫拉取鏡像到本地 docker push #推送本地鏡像到遠程倉庫 docker search #在倉庫搜索鏡像 docker login #登錄到官方倉庫Docker Hub docker logout #退出登錄 1 2 3 4 5
鏡像相關操作
docker build #從Dockerfile構建鏡像 docker pull #同上 docker push #同上 docker history #顯示鏡像的歷史信息 docker images #列出鏡像 docker rmi #刪除鏡像 docker tag #給鏡像打上tag標簽 docker run #創建容器并啟動容器 docker create #創建容器 docker commit #將修改后的容器生成鏡像 docker load #從壓縮包中加載鏡像 docker import #從歸檔文件中創建鏡像 docker save #將鏡像保存到壓縮文件 1 2 3 4 5 6 7 8 9 10 11 12 13
容器相關操作
docker attach #依附到一個正在運行的容器中 docker exec #進到正在運行的容器中執行命令 docker cp #在容器和本地系統間復制文件 docker update #將一個容器內所有的進程從暫停狀態中恢復 docker ps #列出主機中的容器 docker port #查找一個nat到私有網口的公共口 docker top #查看一個容器中正在運行的進程信息 docker logs #查看日志文件 docker diff #檢查容器內文件系統的修改 docker status #輸出容器的資源使用統計信息 docker wait #阻塞直到容器終止 docker start #啟動已創建的容器 docker pause #暫停運行中的容器 docker unpause #使暫停的容器恢復運行 docker stop #停止容器運行 docker rename #容器改名 docker restart #容器重啟 docker kill #關閉運行中的容器 docker rm #刪除容器 docker export #導出容器內容為tar包 docker run #同上 docker create #同上 docker commit #同上 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
其他基本命令
docker events #從服務端獲取實時的事件 docker info #查看系統相關信息 docker inspect #顯示Docker對象的具體配置信息,包括容器,鏡像,網絡等 docker version #輸出Docker的版本信息 1 2 3 4
管理命令
docker container #容器管理 docker image #鏡像管理 docker network #網絡管理 docker node #節點管理 docker plugin #插件管理 docker secret #管理敏感數據及普通服務配置項 docker service #服務管理 docker stack #棧管理 docker swarm #集群管理 docker system #管理系統信息 docker volume #卷管理 1 2 3 4 5 6 7 8 9 10 11
一些命令圖幫助大家記憶理解