Top new questions this week:
|
While I knew for quite some time the existence of Hurd, and its mission as the official GNU Operating System kernel, I was wondering how come Linux is not embraced as the official GNU kernel over the …
|
Sometimes when I cat a binary file by mistake, my terminal gets garbled up. Nothing a quick reset can't fix, but couldn't an attacker theoretically create a file that, when displayed on a terminal, …
|
I find if add this line in .bashrc, bash won't record any commands which have whitespace before them into history: export HISTCONTROL=ingorespace. But I do not understand under what situations it …
|
Remote machine 10.10.10.1 has password "asdFGH12" for user named "user". I'm able to log in even if I type in password "asdFGH12dasdkjlkjasdus" or any other characters after the "asdFGH12" string.
$ …
|
In the terminal, I can type CRTL+R to search for a matching command previously typed in BASH. E.g., if I type CTRL+R then grep is lists my last grep command, and I can hit enter to use it. This only …
|
I can define bash functions using or omitting the function keyword. Is there any difference?
#!/bin/bash
function foo() {
echo "foo"
}
bar() {
echo "bar"
}
foo
bar
Both calls to functions …
|
I went through this article, which explains various methods for checking your RAM usage. However, I can't reconcile the different methods and don't know which one is correct.
When I first login, I'm …
|
Greatest hits from previous weeks:
|
There's a builtin Unix command repeat whose first argument is the number of times to repeat a command, where the command (with any arguments) is specified by the remaining arguments to repeat. For …
|
I've been trying to get ssh-add working on a RaspberryPi running Raspbian.
I can start ssh-agent, when I do it gives the following output into the terminal:
…
|
Can you answer these?
|
I'm building x509 PKI. And I want to apply CA's concept to my own private apt-get repository. I just found that apt-get repository (reprepro) use PGP certificate and some textbook said they can't use …
|
I'm fairly new to the embedded world, so forgive me if this seems obvious.
I'm working on a board based off of the AT91SAM9260. I have 256MB of flash and 64MB of RAM. The current setup flashes two …
|
Editing text file using Emacs will make Emacs make a companion file for its own purpose.
For example, after first editing a file called test.c, Emacs will leave a file called test.c~ in the same …
|