Search results

  1. Kryptoghost

    disable IPv6

    add this to your /etc/sysctl.conf file net.ipv6.conf.all.disable_ipv6 = 1
  2. Kryptoghost

    What's the difference between a PC Linux and Server Linux

    "root access" you keep using that word, i do not think it means what you think it means. Just pick up ubuntu, buy some books or courses and just start learning. I do the same thing as you, when i come up to a new technology I imagine its hyper complicated and i go at it as if it were a bomb...
  3. Kryptoghost

    What's the difference between a PC Linux and Server Linux

    There is absolutely no difference between a server and a computer other than its role. If you were to download a server edition of an operating system it will usually be a bloatless version running core services and during installation might as ask you want to install services like mail, ftp...
  4. Kryptoghost

    Cloud printer on Linux

    np, glad it worked out. I usually end up referring to like 3 docs when i install stuff. For some reason one doc never seems to be enough lol
  5. Kryptoghost

    Changing files extention

    well typically the only difference between distros are, whats installed. So if you don't have rename on your distro you could just install it.
  6. Kryptoghost

    Cloud printer on Linux

    maybe try sudo in front of that command. also if gcp-cups-connector worked i would run which gcp-cups-connector and find the filepath, go into that directory and see if -util is there. if it is, you could run "./gcp-cups-connector-util init" from there i would imagine.
  7. Kryptoghost

    Linux Terminal for Learning

    https://www.udemy.com/linux-administration-bootcamp/ this course is $12 and was pretty informative. I would say the terminal tends to be more functional than a desktop environment most of the time for me as a sysadmin. my go to tools are primarily terminal based, vim, nmap, tshark, genact(when...
  8. Kryptoghost

    Why is Terminal automatically entering my command after pasting? How can i solve this problem?

    This may not be helpful, but i highly recommend you not copy commands, 1. you wont learn them as fast, typing them out every time concretes them into memory. 2. you may accidentally do something you didn't intend to because you misunderstood the command as you glossed over. 2.5. sometimes...
  9. Kryptoghost

    NVR Disk Not Mounting

    stick a sudo at the beginning of that command. sudo mount -t ntfs /dev/sda2 /drive
  10. Kryptoghost

    Why is Terminal automatically entering my command after pasting? How can i solve this problem?

    okay, i tested it. If you just copy the text only and not the entire line, it will paste without resolving if you copy the entire line, it will return once you paste. make sure only the text is highlighted and not the entire line.
  11. Kryptoghost

    Why is Terminal automatically entering my command after pasting? How can i solve this problem?

    do you copy the whole line or just the text with no white spaces at the end?
  12. Kryptoghost

    Why is Terminal automatically entering my command after pasting? How can i solve this problem?

    What are you copying? if you're copying a line from a terminal, i've noticed that if you copy the whole line then there is a return in there and it causes the paste to immediately resolve. This may vary between terminal emulators, but i would try copying different content to make sure its not...
  13. Kryptoghost

    Why is Terminal automatically entering my command after pasting? How can i solve this problem?

    Looks like you might be copying a return or another line when you copy. This might help though. Prior to pasting type a # then paste your line. It will not execute and you can remove the # and hit enter when the modifications have been completed.
  14. Kryptoghost

    NVR Disk Not Mounting

    You might try "df -h" in the command line to see if linux sees any data on the drives. Additionally I agree with Rob, try mounting the drive first.
  15. Kryptoghost

    LInux Mint Kernels

    Typically most distros will offer a "LTS(long term support)" version every couple of iterations. LTS is favorable for developers and businesses because they know they can work in that environment for a long time. As a single user looking for cutting edge software and support you could enjoy the...
  16. Kryptoghost

    Usb drive formatting issues?

    that's very interesting, well its sounds like you were able to create a working drive from windows but its weird that linux was corrupting the drives. Here is a link on possibly fixing a drive in terminal for future reference. https://www.lifewire.com/fix-a-broken-usb-drive-using-linux-4116970
  17. Kryptoghost

    Installed ssh on Debian how to remote login?

    Im assuming that you want to connect to your home pc from work.(if its the other way around you will need access to your company router) You will visit https://www.whatismyip.com/ and copy your public IPv4 address. Then login to the router and port foward port 22 to point to the local IP...
  18. Kryptoghost

    Usb drive formatting issues?

    how are you copying the files over? are you using a terminal or GUI program?
  19. Kryptoghost

    Linux/Windows Same pc save configuration

    that is a good point, i didnt consider that possibility.
  20. Kryptoghost

    NO_PUBKEY

    your problem might be solved by running "sudo apt-get update" first. as arochester mentioned the links to the repos are not working. either youll need to change your source lists for now or apt-get update might fix the issue.
Top