Your browsing connects to port 80 and 443 on the remote server, not your machine. On your own machine some high port will be outgoing. Surf a little and then check with netstat. It's a little...
Type: Posts; User: Lars Noodén; Keyword(s):
Your browsing connects to port 80 and 443 on the remote server, not your machine. On your own machine some high port will be outgoing. Surf a little and then check with netstat. It's a little...
locate searches a database (/var/lib/mlocate/mlocate.db) which is a snapshot of the system at the time the database was filled. So if you move things around, install or uninstall things, the...
The find command listed above won't actally delete anything until you modify it. How to modify it should become more obvious once you get more familiar with how it works and what it does.
You could use find:
find . -name "*avgd" -exec echo rm {} \;
You can see the full list of options in the manual page for find. But the above looks recursively in the current directory...
There are a lot of sources listed in this thread:
http://ubuntuforums.org/showthread.php?t=2155675
I can't propose an order in which to read them. You'll have to skim them and decide which to...
Skipping ahead to when you've gotten the hardware solved, you'll probably only want to port from vinyl to digital once per disc. In that case you should strongly consider making the first copy in a...
Also take a look at Lubuntu. The GUI will be a little faster on the G4 than regular Ubuntu and there have been PPC versions for each release.
If there are not too many to be blocked, I would probably just add them to iptables rules. Otherwise, there is also Dansguardian, which I have read about but never used. I presume it still works...
Try VirtualBox, it works well and is Free/Open Source Software (as long as Oracle lets it be).
It can do both 32-bit and 64-bit, but if you want to try ARM, PPC, MIPS or Sparc then you'll have...
The option --files-from only reads the files from an existing list. If you want rsync to find what's there you can just point it to the source directory:
rsync -avl /home/koosfoto.hu/source/ ...
That's still about the same as restricting access to localhost for non-VM'd services. That kind of access control is something you have to learn any way. VMs do add another layer where something...
That won't make it any more secure. It just makes it easier to clean up. For learning it might be better to take advantage of VM snapshots. But for security, there's no advantage. In fact there...
If your home router is like most people's it will not forward connections to your desktop unless you specifically configure it to do so.
If you are really worried, you can use UFW or GUFW to...
I'd also recommend at least skimming the following as you progress with other material:
http://mywiki.wooledge.org/FullBashGuide
http://mywiki.wooledge.org/BashFAQ
...
+1 for key-based authentication
If you turn off password authentication and use only keys, you can stop worrying about brute force cracking attempts for the most part.
...
To give more hints on the ssh option, the remote machine needs to be running the server which is in the package openssh-server for Ubuntu. For other Linux distros the name might vary a little.
...
Yes. Though sometimes it is a little hard to massage HTML tables into workable lists of text. Having two alternative methods of getting the networks won't hurt ... much.
If you know the AS number of the network, you can also use whois to generate the list for you:
/usr/bin/whois -h whois.radb.net '!gAS32934' | tr ' ' '\n' | sort -n -k1,1 -k2,2 -k3,3 -k4,4
...
There might be a way to do it using sudo. Instead of using sudo to run as root, use sudo to run as a user that can read the password file. The option for that is -u. Have it call a shell script...
If they are logging in while physically at the computer, then your might consider rbash. Make a special directory with only that one script in it and then set the value of $PATH to that directory. ...
That could be boiled down even shorter, skipping the redirect to a file and just piping the echo into sudo. However, either way you end up with the password unencryped in the shell's history which...
You can set specific programs to not need passwords in sudo, but you have to be careful in setting it up.
Here is one example:
%adm ALL=(ALL) NOPASSWD: /sbin/ifconfig eth0 *
It allows...
I'd go with something lower power if it's going to be on most of the time. Most of the tasks you list don't demand fancy hardware, except for the Bitcoin. About the Bitcoin, it's way too late to be...
Bind is probably not necessary unless special tricks with DNS are needed.
ISC dhcpd is easy enough to set up, but dnsmasq is even easier. dnsmasq can also do DNS caching if that was on the...
When you are editing text as input you can use ctrl-d on a blank line to exit. It works in many other situations, too. Just be careful not to do it twice in a row, becaue the first one will exit...