書評:Just the Computer Essentials(Vista)

Normally we try and focus on articles about how to customize your computer, but today we’ll take a break from that and do a book review. This is something I’ve not done before, so any suggestions or questions will be welcomed in the comments.

通常,我們嘗試著重于有關如何自定義計算機的文章,但是今天我們將休息一會兒并進行書評。 這是我之前從未做過的事情,因此任何建議或問題都會在評論中受到歡迎。

image

Book Information

圖書信息

TitleJust the Computer Essentials
TagA Plain-English, No-Nonsense Guide to Buying and Maintaining a PC Running the Windows Vista Operating System for Your Home or Home Office
AuthorJames A. White
TopicsWindows Vista, Computer Basics, Security
Price$18.21 on Amazon
Pages288
ISBN0979297168
標題只是計算機基礎知識
標簽面向您的家庭或家庭辦公室的購買和維護運行Windows Vista操作系統的PC的普通英語指南
作者詹姆斯·懷特
主題Windows Vista,計算機基礎,安全性
價錢亞馬遜上的18.21美元
頁數288
書號 0979297168
  • The Good

    善良

    There’s tons of good information on backing up and restoring your computer, and what to do in the event of a problem or total system crash.

    關于備份和還原計算機,以及在出現問題或整個系統崩潰時的處理方法,都有大量的有用信息。

  • The BadThe book could have focused more on what to do in the event of a massive spyware infestation, a much more common problem for regular users. Also, there’s no mention of the How-To Geek… what’s up with that? =)

    壞人該書本可以將更多的重點放在萬一間諜軟件泛濫的情況下該怎么辦,這對于普通用戶來說是一個更為常見的問題。 此外,也沒有提到“如何做極客”……這是怎么回事? =)

  • The Bottom LineThis book is an excellent guide for less experienced users to keeping your computer safe and backed up. It’s really not geared towards either geeks or people unfamiliar with computers.

    底線本書為經驗不足的用戶提供了一個很好的指南,幫助您保護計算機的安全并進行備份。 實際上,它既不適合極客或不熟悉計算機的人。

Overview

總覽

The book starts out with some chapters geared towards beginners: explaining basic concepts such as computer internals… hard drives, bits, bytes, processors, etc. It moves on to an explanation of how wireless works, and moves into the basics of operating systems and software.

本書從面向初學者的幾章開始:解釋了諸如計算機內部結構……硬盤驅動器,位,字節,處理器等之類的基本概念。接著介紹了無線的工作原理,并介紹了操作系統和操作系統的基礎知識。軟件。

The next section gives the reader an overview of anti-virus, spyware, firewalls and the importance of using good passwords. There’s some good information here for novices, although personally I think there could have been more considering this area is the biggest problem for regular users.

下一節將為讀者提供反病毒,間諜軟件,防火墻的概述,以及使用正確密碼的重要性。 對于新手來說,這里有一些很好的信息,盡管我個人認為考慮到這一領域對于普通用戶而言是最大的問題,可能還有更多信息。

The book moves further into the area of backups, using Windows backup and system restore. This is really the best part of the book, as the author walks you through what to backup and how to automate it, as well as what you should do when your computer crashes, from System Restore down to reinstalling and restoring backups.

本書使用Windows備份和系統還原功能進一步介紹了備份領域。 從作者從系統還原到重新安裝和還原備份的過程中,作者將逐步指導您進行備份,自動備份以及計算機崩潰時應采取的措施,這確實是本書的最佳部分。

The final section of the book explains how to migrate from an old XP computer to your new Vista computer, using either an external hard drive or the “Easy Transfer” cable process.

本書的最后一部分介紹了如何使用外部硬盤驅動器或“輕松傳輸”電纜過程從舊的XP計算機遷移到新的Vista計算機。

Thoughts

思想

This book would be helpful for that one relative that calls you all the time to fix things. You know who I’m talking about.

這本書對于一直打電話給您解決問題的親戚很有幫助。 你知道我在說誰。

Getting a Copy

取得副本

You’ll note that there’s an affiliate code in this link to Amazon, so if you buy with this link the author of the book will make a few extra cents on the transaction.

您會注意到,在此指向亞馬遜的鏈接中有一個會員代碼,因此,如果您通過此鏈接購買,則書的作者將在交易中多賺幾分錢。

Just the Computer Essentials on amazon.com

只是amazon.com上的計算機基礎知識

翻譯自: https://www.howtogeek.com/howto/book-reviews/book-review-just-the-computer-essentials-vista/

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/278271.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/278271.shtml
英文地址,請注明出處:http://en.pswp.cn/news/278271.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

RxSwift筆記七其他操作符

簡介 git地址: https://github.com/ReactiveX/RxSwift參考資料:http://t.swift.gg/d/2-rxswiftReactiveX是通過可觀察的流實現異步編程的一種API,它結合了觀察者模式、迭代器模式和函數式編程的精華,RxSwift 是 ReactiveX 編程思想的一種實現。 復制代碼…

python學習

為了學會能學&#xff0c;不負時間&#xff0c;為了那簡練的美&#xff01; 為了一片新天地。 /t 對齊 python : # 99乘法表i 0while i < 9 : i 1 j 0 while j < i : j 1 print(j ,* , i,"" , i*j , end\t) #空格不能對齊 制表符…

hey 安裝_如何在助理揚聲器上調整“ Hey Google”的靈敏度

hey 安裝Vantage_DS/ShutterstockVantage_DS / ShutterstockThe Google Assistant is a useful tool that allows you to control your smart home, check the weather, and more. Unfortunately, the Assistant might not hear you in a noisy environment or it might activa…

EXCEL如何進行多條件的數據查找返回

在使用EXCEL時經常會碰到一個表里的同一款產品每天的銷量都不一樣&#xff0c;然后我們需要查導出每一款產品每天的銷量&#xff0c;即一對多條件查找。這個教復雜&#xff0c;我們要用到好幾個函數的綜合&#xff0c;下面小編來教你吧。 工具/原料 EXCEL軟件&#xff08;本文使…

如何將Google幻燈片轉換為PowerPoint

If someone sent you a presentation on Google Slides, but you’d rather work on it in Microsoft PowerPoint, you can easily convert it to a .pptx file in just a few simple steps. Here’s how it’s done. 如果有人在Google幻燈片上向您發送了演示文稿&#xff0c;但…

Linux 常用命令:文本查看篇

前言 Linux常用命令中&#xff0c;除了cat還有很多其他用于文本查看的命令。本文將簡單介紹一下這些文本查看的命令。 全文本顯示--cat cat可能是常用的一個文本查看命令了&#xff0c;使用方法也很簡單&#xff1a; cat file #全文本顯示在終端cat -n file #顯示全文本&#…

XP調整禁用頁面文件

NOTE: You shouldn’t disable your page file unless you really really know what you are doing. 注意&#xff1a;除非您真的很清楚自己在做什么&#xff0c;否則不應該禁用頁面文件。 If your computer has 1 GB of RAM or more, disabling the page file can speed up XP…

復制數據庫

1.首先手動創建新的數據庫 CREATE DATABASE new-DB DEFAULT CHARACTER SET utf8mb4; 2.使用mysqldump命令。結果&#xff0c;會連同數據一起復制過去。 mysqldump old-DB -u root -pXX --add-drop-table | mysql new-DB -u root -pXX轉載于:https://www.cnblogs.com/clcliangc…

labelme2coco問題:TypeError: Object of type 'int64' is not JSON serializable

最近在做MaskRCNN 在自己的數據&#xff08;labelme&#xff09;轉為COCOjson格式遇到問題&#xff1a;TypeError: Object of type int64 is not JSON serializable 原因是numpy的數據類型不能被json兼容 最簡單的做法是自己寫一個序列類 class MyEncoder(json.JSONEncoder):de…

如何在Windows 10的命令提示符中更改目錄

One of the first things you’ll need to learn as you become more familiar with Command Prompt on Windows 10 is how to change directories in the operating system’s file system. There are a few ways you can do this, so we’ll walk you through them. 隨著您對…

jQuery 購物車

html代碼 <!--shoppingCar start--> <table id"TB"> <tr> <td colspan"7" class"title"> <div class"img_box"> <div class"logo_box"> <img src"img/jd…

MySQL優化總結

2019獨角獸企業重金招聘Python工程師標準>>> 從這幾天看MySQL性能優化來看&#xff0c;基本的思路就是分分分&#xff0e;&#xff0e;&#xff0e; 1&#xff0c;分讀&#xff0c;用緩存來分攤讀表的壓力; 2&#xff0c;讀寫分離&#xff0c;主從分離&#xff0c;寫…

瘋狂java講義

封裝&#xff1a; 封裝&#xff1a;將對象狀態信息隱藏在對象內部&#xff0c;不允許外部程序直接訪問對象內部信息&#xff0c;而是用類所提供的方法訪問和操作。訪問控制符&#xff1a;private&#xff08;當前類訪問權&#xff09; ,protected&#xff08;子類訪問&#xff…

將背景色添加到Word 2007文檔中

Instead of using the standard white background with Word documents, here is how to add some background color to spice up your documents. 代替在Word文檔中使用標準的白色背景&#xff0c;這是如何添加一些背景顏色來為文檔增添色彩。 Open your word document and ch…

jquery實現增刪改(偽)-老男孩作業day13

使用jquery進行&#xff0c;文件的編寫&#xff0c;實現自增id,刪除&#xff0c;添加&#xff0c;編輯模式。 jquery放在本地&#xff0c;src"jquery_js.js" 可以改成其他&#xff0c;或者在線的路徑 readme<!DOCTYPE html> <html lang"en"> &…

uoj#119. 【UR #8】決戰圓錐曲線(線段樹+復雜度分析)

題解 傳送門 題解 然而要我來說我感覺只是個爆搜啊…… //minamoto #include<bits/stdc.h> #define R register #define ll long long #define ls (p<<1) #define rs (p<<1|1) #define fp(i,a,b) for(R int ia,Ib1;i<I;i) #define fd(i,a,b) for(R int ia…

如何在Raspberry Pi上設置兩因素身份驗證

Kiklas/ShutterstockKiklas /快門The Raspberry Pi is everywhere now, which is why it’s caught the eye of threat actors and cybercriminals. We’ll show you how to secure your Pi with two-factor authentication. Raspberry Pi現在無處不在&#xff0c;這就是為什么…

Laravel Passport里的授權類型介紹

本文來自pilishen.com----原文鏈接; 歡迎來和pilishen一起學習php&Laravel&#xff1b;學習群&#xff1a;109256050OAuth2是一個安全框架&#xff0c;控制著程序受保護部分的準入&#xff0c;主要是控制不同的客戶端如何來調取API&#xff0c;保證它們在請求相應資源的時候…

vue 開發環境搭建

1.創建vue項目 1.node js 生成項目&#xff0c;編譯項目 2.hbuilder 開發環境 1.下載安裝node js http://nodejs.cn/download/ 確認是否安裝成功 如果安裝不了 代碼錯誤2503 解決方法&#xff1a; 管理員命令運行cmd; cd\ cd C:\Users\Administrator\Desktop msiexec/package n…

iphone視圖放大_如何將iPhone用作放大鏡

iphone視圖放大It’s a common problem: Some things are just too hard to see. Usually, they’re too far away, too dark, or too small. With a feature called Magnifier, your iPhone can function as a magnifying glass and sight aid. Here’s how to use it. 這是一…