Search results

  1. O

    Connecting 2 different laptops together wirelessly?

    No. I want to access all VMs from one laptop.
  2. O

    Connecting 2 different laptops together wirelessly?

    I want to open 3 VMs in Virtualbox at one laptop. And 2 VMs in Virtualbox in another laptop. I don't want to use bridged adapter. Without bridged adapter, how do I connect these 2 VMs with each other? I am ready to buy new tools if that comes for cheap in Nepal. By cheap I mean something less...
  3. O

    curl sends empty reply, ping not allowed, how do I determine the time it takes to get response from that server without going high tech?

    I wonder. There is an internal URL that our application needs which: when curled sends "empty reply from server" when ping "no response.....as it's disabled" telnet works How do I test how much time is it taking at various times of the day to send response? Any guidance will be appreciated.
  4. O

    logrotate behave unusually, how do I debug?

    Obviously. It exists. logrotate -d works flawlessly.
  5. O

    logrotate behave unusually, how do I debug?

    Any guidances?
  6. O

    logrotate behave unusually, how do I debug?

    It works fine when I check the config though.
  7. O

    logrotate behave unusually, how do I debug?

    /path/to/logs/*.out { su server server daily copytruncate missingok rotate 7 compress dateext dateformat -%Y-%m-%d } /path/to/logs2/*.log{ su server server daily copytruncate missingok rotate 7...
  8. O

    Any ideas on what can I do with my dell inspiron 15 5567 laptop whose replaced battery goes dead every 1 year?

    The problem is battery is dead and doesn't even charge and laptop can't run at all. I guess the laptop will run even if I take out the battery and just plug a charger?
  9. O

    glassfish.service failed because the domain directory contains multiple domains, how to resolve this issue.

    Ok issue has been resolved by adding correct IP address in /etc/hosts. But why did this occur? What is bind process? And why would glassfish check /etc/hosts file? Can you tell me the internal workings of glassfish (for being a good sysadmin)?
  10. O

    glassfish.service failed because the domain directory contains multiple domains, how to resolve this issue.

    Jan 22 21:41:46 worker-node-1 systemd[1]: Starting GlassFish Server v4.1... Jan 22 21:42:15 worker-node-1 java[1043]: The domains directory /home/techyman/glassfish4/glassfish/domains Jan 22 21:42:15 worker-node-1 java[1043]: contains multiple domains. Please specify a domain. Jan 22 21:42:15...
  11. O

    Any ideas on what can I do with my dell inspiron 15 5567 laptop whose replaced battery goes dead every 1 year?

    I can't sell it as nobody will buy it. I've invested a lot in that laptop. Bough 1TB crucial SATA 2.5'' SSD for 13,500 local currency.(for reference, my current monthly salary is 28,000 local currency). Bought 8GB ram to make it 16GB for 4,000. And replaced battery two times in 2 years...
  12. O

    How to troubleshoot why the system went down?

    This is not a specific question as per se. Please bear with me. I've consulted chatgpt as well and google as well, I'll put down my points here. A server linux running k3s,docker. crashed. Restarting it fixed the issue. :) Now, how do I troubleshoot why it happened? Is there anything I can do...
  13. O

    Virtualbox doesn't open when network is changed.

    When I come to my office network from home network or the reverse of it, and assume my VM in virtualbox is connected to internet, the problem that occurs is that the VM doesn't open at all. It just shows black screen. Generally this gets fixed by changing the mac address like shown below. But...
  14. O

    linux bash scripting marathon (using lpic problems)

    I've decent knowledge of bash scripting. I don't know sed, awk but I know basic bash. Now, I want to do a marathon of LPIC-101 exam questions on bash scripting. What's the best way to do it in your opinion? Most of it looks to me very unpractical but tricky questions. Is there a better approach...
  15. O

    How'd you troubleshoot this network? (figure given below)

    If a remote host connected to a server via VPN is not able to ping the server, how'd you determine if the issue is with VPN at "server side" or VPN at "client side"?
  16. O

    Network troubleshooting cookbook in linux?

    My issue is I won't be able to simulate real world scenarios that happens. I can't explain but I hope you understand. (I am not getting words).
  17. O

    Network troubleshooting cookbook in linux?

    https://devopscube.com/list-linux-networking-troubleshooting-and-commands-beginners/ I want to understand how each of these commands will be useful for network troubleshooting, how can I learn?
  18. O

    Network troubleshooting cookbook in linux?

    Does it exist? Is there curated list of issues that comes in network troubleshooting presented in a book or a dedicated course?
  19. O

    Convert this code to exclude multiple folders?

    # Script #!/bin/bash given_path=/home/techyman/glassfish4/glassfish/domains excluded_folder=x for each in $(ls $given_path); do if [ "$excluded_folder" = "$each" ]; then echo "This is x" continue else echo "this is not x" cd $given_path/$each/logs...
  20. O

    How'd you recommend I intermix Linux with TCP/IP Concepts while learning?

    If I write an application that sends mail, I just need smtp server right?
Top