Top new questions this week:
|
I understand that reads to /dev/random may block, while reading /dev/urandom is guaranteed not to block.
Where does the letter u come into this? What does it signify?
Userspace? Unblocking? Micro?
...
|
I tried a bash script, but it took too long to create a simple 1 MB file. I think the answer lies in using /dev/random or /dev/urandom, but other posts here only show how to add all kinds of data to a ...
|
I would expect
find . -delete
to delete the current directory, but it doesn't. Why not?
|
I need to find the path of a given program on the PATH using a shell script. The path must be the actual full path of the program, which can be passed later to one of the exec* functions, which does ...
|
I am a student and I keep most of my files on my home computer. Unfortunately, i can't use ssh or scp from my laptop which I use at school because of the firewall. I was thinking about trying to use ...
|
A while ago I made a script and I added some logging around it, but I forgot how the redirection for the logging works :-(
The gist of it is:
#!/bin/bash
LOGFILE=/some/path/mylogfile
(
# here go ...
|
I've often seen the rule -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT applied. Whilst I'm not an expert, that particular line concerns me. It's pretty obvious that the rule allows all ...
|
Greatest hits from previous weeks:
|
The ls -al command shows the following output;
-rwxrw-r-- 10 root root 2048 Jan 13 07:11 afile.exe
What are all the fields in the preceding display?
|
I am trying to connect to my WEP network just using the command-line (Linux).
I run:
sudo iwconfig wlan0 mode Managed essid 'my_network' key 'xx:xx:... hex key, 26 digits'
Then I try to obtain an ...
|
Can you answer these?
|
AFAIK different linux tracing tools gather information from /sys/kernel/debug/tracing/events directory where different events are logged. Can anyone explain the difference between "syscalls" event and ...
|
This is partly a straight question and partly an attempt to gain more understanding about how QNAP network servers work.
My office uses a local network drive installed with (according to ...
|
Background
I'm trying to get a BlueZ based userspace app running on a embedded Linux board to use nRF52832 as a Bluetooth connectivity chip. Seems like nRF52832 doesn't support the HCI interface.
...
|