LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 01-14-2022, 03:30 PM   #31
Metaphycisian
LQ Newbie
 
Registered: Nov 2021
Posts: 15

Original Poster
Rep: Reputation: Disabled

Now i made the video and you can help me to solve the problem of pi-hole.. I want to have blocker in my computer..

https://vimeo.com/manage/videos/666146673
 
Old 01-15-2022, 05:01 AM   #32
Metaphycisian
LQ Newbie
 
Registered: Nov 2021
Posts: 15

Original Poster
Rep: Reputation: Disabled
Can somebody help me??
 
Old 01-15-2022, 09:06 AM   #33
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,842

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
would be nice to check your commands. You missed a -:
Code:
curl -sSL https://install.pi-hole.net | bash
     ^
 
Old 01-15-2022, 02:54 PM   #34
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,307
Blog Entries: 3

Rep: Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721
It's interesting that pi-hole has gotten some attention at RIPE lately: https://labs.ripe.net/author/johanne...llation-guide/
 
Old 01-23-2022, 04:59 AM   #35
Metaphycisian
LQ Newbie
 
Registered: Nov 2021
Posts: 15

Original Poster
Rep: Reputation: Disabled
https://vimeo.com/669090956

Here is my next video about trying to download pi-hole into my computer. Can you help me how do i get forward from this position???
 
Old 01-23-2022, 05:42 AM   #36
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
I would not download that over and over.

Here is the source.zip
https://github.com/pi-hole/pi-hole/a...ads/master.zip

Decompress that into a temporary directory and use it. Then look at the installer script to see what it is doing.

Either from the source tree:
/master/automated install/basic-install.sh

Or from github source page:
https://github.com/pi-hole/pi-hole/b...sic-install.sh

And this:
Code:
'ls -l'
Will not work. Those single quotes were to show you the command to run. You probably should stop and learn a little about linux and shell before you go any further.

I would not just blindly install stuff from the internet without knowing what is does, or looking at the source.

Last edited by teckk; 01-23-2022 at 05:44 AM.
 
1 members found this post helpful.
Old 01-23-2022, 08:42 AM   #37
Metaphycisian
LQ Newbie
 
Registered: Nov 2021
Posts: 15

Original Poster
Rep: Reputation: Disabled
I want to continue this pi-hole task with assist of pan64 for finally getting program which blocks websites from my computer. I don't want to constantly switch plans like downloading pi-hole, not downnloading pi-hole. It doesn't help me at all. I will do it
with help of other person..

I clicked this source zip and there wasn't any button called ''decompress'' into temporary directory.. Where do i find this decompress and which thing i'm clicking there? I don't know where is install script there in zip files..

I wrote this to the terminal: /master/automated install/basic-install.sh.
Terminal just said command is not found..

I want to use help of others and not to learn just on my own. Why it's so difficult to simple have program which blocks websites. Through windows it's much easier to download blocking system to the computer.. I will try this way still..
 
Old 01-23-2022, 09:09 AM   #38
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,842

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
Quote:
Originally Posted by Metaphycisian View Post
I want to continue this pi-hole task with assist of pan64 for finally getting program which blocks websites from my computer. I don't want to constantly switch plans like downloading pi-hole, not downnloading pi-hole. It doesn't help me at all. I will do it
with help of other person..

I clicked this source zip and there wasn't any button called ''decompress'' into temporary directory.. Where do i find this decompress and which thing i'm clicking there? I don't know where is install script there in zip files..

I wrote this to the terminal: /master/automated install/basic-install.sh.
Terminal just said command is not found..

I want to use help of others and not to learn just on my own. Why it's so difficult to simple have program which blocks websites. Through windows it's much easier to download blocking system to the computer.. I will try this way still..
The problem is your [missing] knowledge. You don't understand what's going on, what is written and executed, you don't understand the responses/answers.
And also you mistype commands, which makes it extremely hard [to help].

So try the following (do not execute lines beginning with a #:
Code:
cd /tmp
# this will create a new file in the current directory, which is /tmp
wget https://github.com/pi-hole/pi-hole/blob/master/automated%20install/basic-install.sh
# You can check the result:
ls -l /tmp/basic-install.sh
# you will need to see something like this:
# -rw-r--r-- 1 user group 1156134 Jan 23 16:03 basic-install.sh
# now make it executable:
chmod +x /tmp/basic-install.sh
# and execute it as root
sudo /tmp/basic-install.sh
Unfortunately there is no gui to do this.
 
Old 01-24-2022, 11:28 PM   #39
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by teckk View Post
I would not just blindly install stuff from the internet without knowing what is does, or looking at the source.
I totally agree; but I personally don't think it's necessary to read the actual source code.
Reading the README & installation instructions before I go any further, yes.
And watch out for peer review, although that's definitely A-OK with pihole.

@OP, you definitely should get a basic grasp of shell commands, and how your OS connects to the network (specifically for pihole).
 
Old 02-14-2022, 04:01 AM   #40
Metaphycisian
LQ Newbie
 
Registered: Nov 2021
Posts: 15

Original Poster
Rep: Reputation: Disabled
Hey. Is it possible for have just simple program for linux and download that and it will block websites for time or internet and solve the problem in simple way?
 
Old 02-14-2022, 06:08 AM   #41
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,307
Blog Entries: 3

Rep: Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721
Nftables can do that by IP address. It replaced the legacy packet filter iptables a while.

https://wiki.nftables.org/
https://wiki.nftables.org/wiki-nftab..._in_10_minutes

It can also work easily with sets.

I suppose if you combine that with DNSmasq or another local DNS server, then you can block anything.
 
Old 02-14-2022, 07:54 AM   #42
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,635

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by Metaphycisian View Post
Hey. Is it possible for have just simple program for linux and download that and it will block websites for time or internet and solve the problem in simple way?
You were told about nftables in post #3. You seem to have ignored numerous people telling you what you're wanting to do is not 'simple', and requires you to configure things to fit your environment. It was also suggested to you that you learn Linux basics first, but seem to have ignored that as well. Unless you start learning on your own, reading the documentation, and moving forward, there's nothing else we can tell you.

Nftables is the best way to go.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
i'm trying configure a VPN Server with PPTP now to trying to connect on with ldap anis123 Linux - Server 0 01-17-2014 08:44 AM
Trying to install mythtv on feisty fawnbut system crashes when trying to start GDM kopite Ubuntu 2 07-24-2007 01:31 PM
I am trying to learn cron jobs. I am trying to ad the following in plesk: muskiediver Linux - General 5 11-24-2006 01:42 AM
Trying to get captive-ntfs to work, get an error when trying to mount EOHooligan Linux - General 1 06-09-2005 06:23 AM
iget "I cant acess Linux mandrake..." when trying to install linux M Erasorn Linux - Newbie 2 10-30-2004 02:51 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 10:53 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration