2019年8月3日 / kirito / 0 Comments
- Download the chrome plugin
- Add the new agent string: Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.18
- Set append to replace and indicator flag to O12. Add it.
- Go to Permanent Spoof list: add twitter.com with User-Agent string we added above.
- Refresh your twitter page
2019年5月2日 / kirito / 0 Comments
There might be some bugs in the .DS_Store. So first stop the .DS_Store creation in your MacOS:
|
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE |
Then remove all .DS_Store files on your smb folders:
If you want to see the files you want to remove, try:
|
find -name ".*" -exec echo '{}' ';' |
And do it with:
|
find -name ".DS_Store" -exec rm '{}' ';' |
Also you will find more other hidden files like ‘._.DS_Store‘, you should also remove them.
2019年3月7日 / kirito / 0 Comments
- git clone fuse-ext2(https://github.com/alperakcan/fuse-ext2). But I suggest use https://github.com/ipatch/fuse-ext2 before the project owner resolve the issue(https://github.com/alperakcan/fuse-ext2/issues/81)
- Follow the steps on each github readme.
- Problem solutions:
- If you meet: xcode-select: error: tool ‘xcodebuild’ requires Xcode, but active developer directory ‘/Library/Developer/CommandLineTools’ is a command line tools instance, you should excute the command:
|
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer |
- If you meet: error: unable to find sdk ‘macosx10.12’ (in target ‘fuse-ext2’), you should correct macosx10.12 like: SDKROOT = macosx and MACOSX_DEPLOYMENT_TARGET = 10.14
- If you meet the error like permission deined, please run the script with sudo.
- Here is the help text for fuse-ext2:
|
❯ fuse-ext2 --help fuse-ext2 0.0.9 29 - FUSE EXT2FS Driver Copyright (C) 2008-2015 Alper Akcan <alper.akcan@gmail.com> Copyright (C) 2009 Renzo Davoli <renzo@cs.unibo.it> Usage: fuse-ext2 <device|image_file> <mount_point> [-o option[,...]] Options: ro, force, allow_other Please see details in the manual. Example: fuse-ext2 /dev/sda1 /mnt/sda1 http://github.com/alperakcan/fuse-ext2/ |
The best way to install(ONLY with problem1) is:
|
git clone https://github.com/KiritoStudio/fuse-ext2.git cd fuse-ext2/build sudo ./macos-build-fuse-ext2-v0.0.10.sh |