Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create USAGE.en.md #555

Merged
merged 3 commits into from
Jun 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions dev/readme/USAGE.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Other Methods of Usage
## Windows (Manual)

Copy Hosts from [BEBASID](https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts), then paste to
```
C:\Windows\System32\drivers\etc
```
To open the hosts file, use built-in Notepad or Notepad++.
If your desired page is still unable to open, you can flush your dns on cmd.

```
ipconfig /release
ipconfig /renew
ipconfig /flushdns
```

## Android

### Root

**Manual**

Copy the hosts file and paste to /etc folder then restart your phone.

**AdAway**

Alternative (if you want to install via app or add other hosts list)

Install [AdAway](https://f-droid.org/en/packages/org.adaway)

```
https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts
```

Open the app, choose Add, then copy above code and add them.

Turn on "Allow Redirections" on Settings.

**Magisk** (Recommended)

Open Magisk then choose "Module" menu.

After that, tap "+" and then find the bebasid-magisk.zip module.

Tap "Reboot" to start implementing that module.

### Non-Root

Install [Hosts Go](https://play.google.com/store/apps/details?id=dns.hosts.server.change), open the app, tap "Hosts Settings", then choose hosts. Run it.


## Linux

Open terminal, type or copy the command below, then enter.

```
# Install
sudo wget https://raw.githubusercontent.com/bebasid/bebasid/master/releases/bebasid.sh -O /usr/local/bin/bebasid

# Then give the permission to bash folder
sudo chmod +x /usr/local/bin/bebasid

# Help
bebasid --help
```

Alternative (if you just want to install hosts file):
```
sudo wget https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts -O /etc/hosts
```

## BSD / macOS

Open terminal, type or copy the command below, then enter.

```
# Install
sudo curl https://raw.githubusercontent.com/bebasid/bebasid/master/releases/bebasid.sh -o /usr/local/bin/bebasid

# Then give the permission to bash folder
sudo chmod +x /usr/local/bin/bebasid

# Help
bebasid --help
```

Alternative (if you just want to install hosts file):
```
sudo curl https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts -o /etc/hosts
```