I can’t find ctrl+r to do a search in previous commands?

|
Shah_baaz2 2022-09-06 15:08:28
unixusergroup-50049.jpg
My friend gave me this
Jamerive 2022-09-06 15:10:57
Shah_baaz2 2022-09-06 15:08:28
unixusergroup-50049.jpg
My friend gave me this

so is not official? maybe you got it from another source. If that is the case you have to be aware that RHEL focus on stability so some packages are pretty old but so tested that generally does not give error or fail, so it is better to use the one of the official repos.

Jamerive 2022-09-06 15:12:02
but if you want to test newer version there are options
Shah_baaz2 2022-09-07 16:36:45
Hi all i have created a virtual machine with Amazon vdi but it is asking for password
Shah_baaz2 2022-09-07 16:37:15
Which i have not set while creating the vm
Shah_baaz2 2022-09-07 16:43:23
Anyone??
Ceda EI 2022-09-07 16:44:43
Shah_baaz2 2022-09-07 16:36:45
unixusergroup-50049.jpg
Hi all i have created a virtual machine with Amazon vdi but it is asking for password

when does it ask for a password?

Shah_baaz2 2022-09-07 17:11:06
While login asking for user name and password
Fibonakki 2022-09-07 17:57:20
Shah_baaz2 2022-09-07 16:36:45
unixusergroup-50049.jpg
Hi all i have created a virtual machine with Amazon vdi but it is asking for password

The default one is: jeffbezos777

BytesIO 2022-09-07 18:07:33
Fibonakki 2022-09-07 17:57:20
unixusergroup-50049.jpg
The default one is: jeffbezos777

for real?

Fibonakki 2022-09-07 18:09:44
BytesIO 2022-09-07 18:07:33
unixusergroup-50049.jpg
for real?

Ahaha nah srry 🤣

thecatvoid 2022-09-07 18:21:39
Shah_baaz2 2022-09-07 16:37:15
unixusergroup-50049.jpg
Which i have not set while creating the vm

change password

thecatvoid 2022-09-07 18:21:42
passwd
Shah_baaz2 2022-09-07 18:56:12
thecatvoid 2022-09-07 18:21:39
unixusergroup-50049.jpg
change password

https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/amazon-linux-2-virtual-machine.html

Run Amazon Linux 2 as a virtual machine on premises – Amazon Elastic Compute CloudAmazon
Use the Amazon Linux 2 virtual machine (VM) images for on-premises development and testing. These images are available for use on the following virtualization platforms:
Shah_baaz2 2022-09-07 18:56:35
This is how i able to create and provide password to that vm
thecatvoid 2022-09-07 19:25:06
Shah_baaz2 2022-09-07 18:56:35
unixusergroup-50049.jpg
This is how i able to create and provide password to that vm

idk i was talking about how we usually change password on an unencrypted device, that is to append init=/bin/bash in kernel param and change password by passwd

ultrasigma0 2022-09-09 23:41:31
Does anyone use openntp
nut3l4 2022-09-10 11:35:00
Hmm zsh on macos.. I can’t find ctrl+r to do a search in previous commands? (history) https://www.techrepublic.com/article/enhanced-history-searching-in-zsh/ doesn’t work…

Ah found it probably;
This can be remedied by editing the ~/.zshrc file and adding a few bindkey statements:

bindkey “^[[A” history-search-backward

bindkey “^[[B” history-search-forward

Now working… It is .zprofile not “rc” on macos.

Enhanced history searching in zshTechRepublic
Vincent Danen explains how to get more out of the search history features in the zsh shell.
nut3l4 2022-09-10 11:35:29
ultrasigma0 2022-09-09 23:41:31
unixusergroup-50049.jpg
Does anyone use openntp

Didn’t know about it, thanks for the tip.

moogiwaraa 2022-09-10 20:49:17
Transcending POSIX: The End of an Era? | USENIX
https://www.usenix.org/publications/loginonline/transcending-posix-end-era
ultrasigma0 2022-09-12 12:34:06
Is linux security module necessary?
Ceda EI 2022-09-12 16:21:14
URL is also a shell script that executes some malicious(?) code (❄️ Score: 150+ in 2 days)

Link: https://readhacker.news/s/5kDxX
Comments: https://readhacker.news/c/5kDxX

GitHub – jwilk/url.sh: this URL is also malicious(?!) shell scriptGitHub
this URL is also malicious(?!) shell script. Contribute to jwilk/url.sh development by creating an account on GitHub.
moogiwaraa 2022-09-12 17:01:25
https://daniel.haxx.se/blog/2022/09/08/http-http-http-http-http-http-http/
Shah_baaz2 2022-09-12 17:14:36
Hi anyone can help how to increase decrease memory of a docker container which is already created and don’t want to create a new one instead append the memory on same container
Carlo Chech 2022-09-12 17:16:24
docker update?
marcotrosi 2022-09-12 22:11:29
https://getantidote.github.io/
moogiwaraa 2022-09-13 20:18:19
How to update the file jq is working on? Like sed does with -i flag
andykluger 2022-09-13 20:30:10
moogiwaraa 2022-09-13 20:18:19
unixusergroup-50049.jpg
How to update the file jq is working on? Like sed does with -i flag

I don’t know, but a fun alternative to jq is yamlpath (on PyPI), providing a command yaml-set, e.g.

yaml-set
–mustexist
–change=the.new.password
–saveto=the.old.password
–value=”New Password”
my_yaml_file.yaml

It works on json (as a subset of yaml)

mendel7 2022-09-13 20:31:30
moogiwaraa 2022-09-13 20:18:19
unixusergroup-50049.jpg
How to update the file jq is working on? Like sed does with -i flag

maybe -o?

moogiwaraa 2022-09-13 20:32:51
mendel7 2022-09-13 20:31:30
unixusergroup-50049.jpg
maybe -o?

There’s no -o flag in my version

moogiwaraa 2022-09-13 20:33:24
andykluger 2022-09-13 20:30:10
unixusergroup-50049.jpg
I don’t know, but a fun alternative to jq is yamlpath (on PyPI), providing a command yaml-set, e.g.

yaml-set
–mustexist
–change=the.new.password
–saveto=the.old.password
–value=”New Password”
my_yaml_file.yaml

It works on json (as a subset of yaml)

json is yaml subset? did not know that

mendel7 2022-09-13 20:34:05
moogiwaraa 2022-09-13 20:33:24
unixusergroup-50049.jpg
json is yaml subset? did not know that

i think yaml is a json superset rather

mendel7 2022-09-13 20:34:31
moogiwaraa 2022-09-13 20:32:51
unixusergroup-50049.jpg
There’s no -o flag in my version

hm you’re right, you can try redirecting to it then, but copy it first in case it clears it

mendel7 2022-09-13 20:34:55
iirc it works if you input it to jq as a path, not as stdin
mendel7 2022-09-13 20:34:59
or something like that
|