Tuesday, December 25, 2018

Zapamtite ovo ime - firma koja koristi Lazarus i Linux u izradi knjigovodstvenog i poslovnog softvera -TOPCODE



Zapamtite ovo ime - firma koja koristi Lazarus i Linux u izradi knjigovodstvenog i poslovnog softvera.

EVO ŠTA KAŽU:

"PRIMENJENE TEHNOLOGIJE

Tehnologije koje koristimo za desktop aplikacije su Delphi (moderan razvojni alat za Windows operativne sisteme), Lazarus, i Firebird kao sistem za upravljanje bazom podataka.
Aplikacije su primarno rađene kao desktop aplikacije za Windows operativne sisteme, ali se mogu pokrenuti i pod Linux operativnim sistemima (koristeći Wine). Pomoćne mobilne aplikacije imamo razvijene za Windows Mobile i Android platforme (inventarisanje, terenska prodaja,…)."

Sedište ove firme je:
Aksentija Marodića 14A,
24000 Subotica, Srbija

Kancelarija im se nalazi u:
​Ivana Gorana Kovačića 3/31
24000 Subotica, Srbija


A njihovu podršku imate na sledeće telefone:
024 4100 480
065 3100 480
065 3100 481
podrska@topcode.rs

Sunday, December 23, 2018

RedoxOS written in RUST LOL MAN

11

Operating system written in Rust:
https://www.redox-os.org/screens/

RESPECT !
but we need audio please...


And check this out:
https://system76.com/

https://en.wikipedia.org/wiki/System76

Paralel browser written in Rust:
https://servo.org/

https://en.wikipedia.org/wiki/Servo_(software)

Just install Unix-like-OS FREEBSD on Virtual Machine

The real security operating system

https://os.kaspersky.com/

Dok je Microsoft Windows svoju pojavu na tržištu projavio početkom 80-tih godina pojavom MS DOS-a, koji nije uopšte bio orijentisan niti kreiran da zadovolji mrežne i internet potrebe, jer isti koncepti tad nisu ni bili nešto mnogo poznati, jedino je još Unix Solaris tih godina razmišljao o mrežama.

Kaspersky od nule pravi operativni sistem koji je prvenstveno baziran na sigurnosti i mrežnom internet okruženju.

Imate najnoviji Windows 10, redovno ga updateujete, ali to nije dovoljno ukoliko nemate još gomilu LINUX ili BSD arhitekture koja se vrti u ROUTER, SWITCH i FIREWALL uredjajima poslednje generacije.

Sam Windows 10 više nije dovoljan da budete potpuno sigurni na mreži i internet okruženju.

U ranijim postovima sam se bavio većinom sigurnim LINUX i BSD distribucijama, ali ovaj Kaspersky OS je nešto sasvim novo i revolucionarno.

Ako poredimo bilo koji Windows i Linux na internetu, Windows se sa stanovišta sigurnosti ne može ni na milju približiti LINUX sigurnosti.



Thursday, December 20, 2018

QEMU to start Linux on Windows


"If you're serious about security, Qubes OS is the best OS available today. It's what I use, and free." 

Edward Snowden, whistleblower and privacy advocate



MORE TIPS>

https://www.qemu.org/download/#windows

https://www.mobatek.net/labs.html


Qemu Installation comes with some handy HTML documentation check if you have that, if not you can look for an online version at the Qemu official website.
as for the way to boot from a live CD ISO image this is the command syntax:
qemu -boot d -cdrom <your-iso-image.iso> -m <ram>
notice the <ram> parameter is used to tell qemu how much memory to dedicate to your guest system from the host System.
If you wish to use create a hard disk image and associate it with the qemu VM as well (useful when formatting the VM using the ISO) you can execute these two commands:
  1. First, create the hard disk image:
    qemu-img create <disk-image-name.img>
Pass in the your desired disk image name, and the size you want to allocate for it.
  1. Now we can use both Iso and Disk image to boot:
    qemu -boot d -cdrom <iso-image.iso> -m -hda <disk-image.img>
That would be it.

qemu-img create -f qcow2 /var/lib/libvirt/images/disk1.img 10G

qemu-img info /var/lib/libvirt/images/disk1.img

https://www.ibm.com/support/knowledgecenter/linuxonibm/com.ibm.linux.z.ldva/ldva_r_qemu-imgCommand.html



https://en.wikibooks.org/wiki/QEMU/Images

rem-------------key set of commands----------------------------
cd \
cd c:\Program Files (x86)\qemu
path c:\Program Files (x86)\qemu
dir q*
qemu-img create -f qcow2 hddhack.img 3G
qemu-system-x86_64 -m 800 -hda hddhack.img -cdrom d:\hack.iso -boot d
rem-------------------------------------------------------------------



  • This example creates a qcow2 image with a maximum size of 10GB:
    # qemu-img create -f qcow2 /var/lib/libvirt/images/disk1.img 10G
    Formatting '/var/lib/libvirt/images/disk1.img', fmt=qcow2
    size=10737418240 encryption=off cluster_size=65536
    lazy_refcounts=off
    Format specific information:
    compat: 1.1
    lazy refcounts: false
    refcount bits: 16
    corrupt: false
  • This example displays attributes of a qcow2 image:
    # qemu-img info /var/lib/libvirt/images/disk1.img
    image: /var/lib/libvirt/images/disk1.img
    file format: qcow2
    virtual size: 10G (10737418240 bytes)
    disk size: 136K
    cluster_size: 65536
  • This example increases the size of a qcow2 image:
    # qemu-img resize /var/lib/libvirt/images/disk1.img 20G
    Image resized.
    
    # qemu-img info /var/lib/libvirt/images/disk1.img      
    image: /var/lib/libvirt/images/disk1.img
    file format: qcow2
    virtual size: 20G (21474836480 bytes)
    disk size: 140K
    cluster_size: 65536
  • This example creates a RAW image with a maximum size of 10GB:
    # qemu-img create -f raw /var/lib/libvirt/images/disk1.img 10G
    Formatting '/var/lib/libvirt/images/disk1.img', fmt=raw 
    size=10737418240
  • This example displays attributes of a RAW image:
    # qemu-img info /var/lib/libvirt/images/disk1.img
    image: /var/lib/libvirt/images/disk1.img
    file format: raw
    virtual size: 10G (10737418240 bytes)
    disk size: 0
  • This example increases the size of a RAW image:
    # qemu-img resize -f raw /var/lib/libvirt/images/disk1.img 20G        
    Image resized.
    
    # qemu-img info /var/lib/libvirt/images/disk1.img      
    image: /var/lib/libvirt/images/disk1.img
    file format: raw
    virtual size: 20G (21474836480 bytes)
    disk size: 0