最近やたらTime Machineがバックアップできない・完了しない。
あれこれでosX 10.12以降かな…
いろいろネットにある情報を探してみましたが、次の有利情報が手に入った。
参考サイト:https://wayohoo.com/mac/troubles/how-to-deal-with-the-problem-of-backup-for-time-machine.html
何をするというと、Time Machineの設定を削除して、1からやり直す…
まぁ、できないよりはマシかな?
という訳で、やってみましょう
つぎの設定ファイルを削除する
/Library/Preferences/com.apple.TimeMachine.plist
できるかどうかわからないが、とりあえずひとメモ。
SyntaxHighlighter
2018-09-22
Homebrew 系統升級後設定
這次的問題發生在MacOS 10.13以後的版本上。主要由於MacOS本身升級後改掉了一些目錄的設定,導致Homebrew抓不到自己的設定。還好Homebrew自己的設定還滿容易升級的。
錯誤訊息發生於執行
但是執行了指令之後並沒有多大作用。還是一樣跳一大堆錯誤之後停下來。
找了找網路的解法,看起來是要重新install過brew。執行下面指令(建議先自己跑過Xcode把CommandLine Tool更新一下)
以上,解決。暫時完成brew更新的問題。
參考資料:
High SierraにアップデートされたMacでHomebrewがうまく動かない時https://qiita.com/takustaqu/items/65aa67286345baac363e
錯誤訊息發生於執行
brew update時,brew會告訴你/usr/local這個目錄的使用者權限有問題,叫你用下面的指令進行修復後繼續sudo chown -R $(whoami):admin /usr/local
但是執行了指令之後並沒有多大作用。還是一樣跳一大堆錯誤之後停下來。
找了找網路的解法,看起來是要重新install過brew。執行下面指令(建議先自己跑過Xcode把CommandLine Tool更新一下)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
以上,解決。暫時完成brew更新的問題。
參考資料:
High SierraにアップデートされたMacでHomebrewがうまく動かない時https://qiita.com/takustaqu/items/65aa67286345baac363e
2017-09-29
MacOS X wifi slow
先日、通常使っているMBAのネットワークが急に遅くなった事象が起こりました。
ちょうどHigh Sierra更新と共に現れたので、それのせいかなと思ったけど、どうやら違う問題だったようだ。
そう。問題はWifi自身です。しかもMBAのWifi設定自身か狂ったんだ。
まぁ、幸に、ネットサーフィン自体はまたできる(やや遅いけれども)。
解決方法は簡単。次のステップを踏めて設定を一度整理すること。
1. wifiをoffにする。
2. 次のフォルダを開ける
/Library/Preferences/SystemConfiguration/
3.フォルダ中の次のファイルらを消す。
com.apple.airport.preferences.plist
com.apple.network.eapolclient.configuration.plist
com.apple.wifi.message-tracer.plist
NetworkInterfaces.plist
preferences.plist
4.システムを再起動
5.wifiをonする。
wifiの設定を一度消して、システムに一から構築し直すことによって、過去の不要な設定などを省く、速度も早くなった→予想。
まぁ、早くなったし、App Storeも普通に開けられたし、High Sierraにアップデータしよう!
参考資料:http://osxdaily.com/2016/09/22/fix-wi-fi-problems-macos-sierra/
ちょうどHigh Sierra更新と共に現れたので、それのせいかなと思ったけど、どうやら違う問題だったようだ。
そう。問題はWifi自身です。しかもMBAのWifi設定自身か狂ったんだ。
まぁ、幸に、ネットサーフィン自体はまたできる(やや遅いけれども)。
解決方法は簡単。次のステップを踏めて設定を一度整理すること。
1. wifiをoffにする。
2. 次のフォルダを開ける
/Library/Preferences/SystemConfiguration/
3.フォルダ中の次のファイルらを消す。
com.apple.airport.preferences.plist
com.apple.network.eapolclient.configuration.plist
com.apple.wifi.message-tracer.plist
NetworkInterfaces.plist
preferences.plist
4.システムを再起動
5.wifiをonする。
wifiの設定を一度消して、システムに一から構築し直すことによって、過去の不要な設定などを省く、速度も早くなった→予想。
まぁ、早くなったし、App Storeも普通に開けられたし、High Sierraにアップデータしよう!
参考資料:http://osxdaily.com/2016/09/22/fix-wi-fi-problems-macos-sierra/
2014-05-15
Apache HTTP Server Down after MacOS Upgrade(Update)
My localhost Apache HTTP Server can't start after I update my MacOS.
In Mac, we can check the error with apachectl command
It will show you what's matter on startup, or something wrong with your configure file.
I get a php module error because the PNG module that PHP module try to load is an old version one(libPNG15). There is new version module at the same locate(or say folder). Since it happened because I use the old PHP module, I just fix it by upgrade php module.
In Mac, we can check the error with apachectl command
# apachectl -tIt will show you what's matter on startup, or something wrong with your configure file.
I get a php module error because the PNG module that PHP module try to load is an old version one(libPNG15). There is new version module at the same locate(or say folder). Since it happened because I use the old PHP module, I just fix it by upgrade php module.
2013-09-21
Enable/Disable the FTP Server service on MacOSX 10.8
In MacOSX 10.8, you cannot find the easy switch for enable/disable FTP server.
To Enable FTP Server:
To Disable FTP Server:
To Enable FTP Server:
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist
To Disable FTP Server:
sudo -s launchctl unload -w /System/Library/LaunchDaemons/ftp.plist
2013-08-22
Start / Stop / Restart Apache HTTP Service in MAC
START:
sudo apachectl start
STOP:
sudo apachectl stop
RESTART(unload service and load the service again):
sudo apachectl restart
RESTART but not disconnect all the linked connection(reload the config file)
sudo apachectl graceful
In fact, it calls the /usr/sbin/httpd, so you should set option -k before start|stop|restart|graceful|graceful-stop
for more information, try man apachectl or apachectl -h
sudo apachectl start
STOP:
sudo apachectl stop
RESTART(unload service and load the service again):
sudo apachectl restart
RESTART but not disconnect all the linked connection(reload the config file)
sudo apachectl graceful
In fact, it calls the /usr/sbin/httpd, so you should set option -k before start|stop|restart|graceful|graceful-stop
for more information, try man apachectl or apachectl -h
2013-07-24
MACのSCREEN CAPTURE
Save as a png file(on desktop)
1) Command + Shift + 3 Capture Whole Screen
2) Command + Shift + 4 Capture Part of Screen
3) Command + Shift + 4 and press Space Bar Capture Objects (Icon, Dock, Menu, Submenu, etc)
Save in clipboard
1) Command + Shift + Control + 3 Capture Whole Screen
2) Command + Shift + Control + 4 Capture Part of Screen
3) Command + Shift + Control + 4 and press Space Bar Capture Objects
http://guides.macrumors.com/Taking_Screenshots_in_Mac_OS_X
1) Command + Shift + 3 Capture Whole Screen
2) Command + Shift + 4 Capture Part of Screen
3) Command + Shift + 4 and press Space Bar Capture Objects (Icon, Dock, Menu, Submenu, etc)
Save in clipboard
1) Command + Shift + Control + 3 Capture Whole Screen
2) Command + Shift + Control + 4 Capture Part of Screen
3) Command + Shift + Control + 4 and press Space Bar Capture Objects
http://guides.macrumors.com/Taking_Screenshots_in_Mac_OS_X
登録:
投稿 (Atom)
人気の投稿
-
指令/英文 翻譯1 翻譯2 2D Solid 二維實體 2D 實面 2D Wireframe 二維線框 3D Array 三維陣列 3D 陣列 3D Dynamic View 三維動態觀察 3D 動態檢視 3d objects 三維物體 3D 物件 3D Orbit...
-
ノート程度: 線の太さを画面に反映させる Win: ツール>オプション でオプションウィンドを開き 作図スタイル>アクティブな作図スタイル>線のフォント で [ グラフィック領域で太さを表示]にチェックを入れる。 Mac: System Menu → 設定 /...
-
☆日本一 子煩悩な県 問題: 1.休日はたいてい子どもと遊ぶ 2.配偶者より子どもが大事である 3.外食するときは、まず子どもに何を食べたいか聞く 4.携帯の待ち受けは子どもの写真だ 5.子どもの寝顔を見て感動のあまり泣いたことがある ランキング 1.熊本県 2.北海道 3.山...
-
日本で結婚するときに、台湾の戸籍謄本の訳本が要る。 検索したら、いろいろ有用な先人たちの情報があります。 I♥TAIWAN - 日本小雪さんのブログ、最初ここからスタートして多分いちばん間違いなし。 在日台灣太太連絡簿 - 最低限の必要単語が載っている。 梅と桜 ...
-
這東西搞了兩個多禮拜,終於讓我找到合理的計算方式。 真圓度的計算方法,若使用半徑法,目前有 4種方式(參考Wikipedia(en)資料) 去取假想圓中心。 1. 最小區域圓法 Minimum Zone circle (MZC) 這是ISO及JIS B0621有規定的正式...
-
AutoCADではボタンで1クリック切り替えですけどね DraftSightではややめんどくさい 印刷シート(シートタブ)内で、全空間(モデルタブ)の特定の場所だけ出力させたい時に、ペーパー空間(シート ワークスペース)よりモデル空間(モデル ワークスペース)へ切り替える必...
-
第一關,...沒啥好寫的簡單 右鍵找出網頁原始碼之後就會看到密碼了 h4x0r ...NEXT
-
x64環境のSDKを使ってコンパイルするときに、GWL_WNDPROCなどシステムの定数が使えないことになります。 それは、SDKでは、x64環境であれば(#ifdef _win64)、それらの変数の定義をキャンセルした(undef)のです。 解決法として、GWL_WNDPROC...
-
大多數人使用iReport生成都會使用SQL來抓取資料庫檔案,但是iReport畢竟只是個設計表單用的程式,資料還是要靠Java餵給他。 一般的使用法,就像我以前做的 1. 在iReport中寫死SQL查詢句( SELECT xxx FROM yyy WHERE zzz )...
-
ref url https://www.douban.com/note/284573295/ 字幕软件Aegisub ASS代码使用指南 https://blog.xuite.net/allenyin/blog/63417097-SSA%E3%80%81ASS+%E5%8...