This is how to REAL install Remix OS on VirtualBox. rootfs could be writable!!!
- any linux liveCD iso file (Xubuntu here)
- Remix OS iso file ("Remix_OS_for_PC_Android_M_32bit_B2016092201.iso" here)
- VirtualBox
| 1375421247 | So, you want to work in security? – Free Code Camp | https://medium.freecodecamp.com/so-you-want-to-work-in-security-bc6c10157d23?gi=3319f2f9d171 | |
| 1392467994 | HackedThat: Breaking in to a hardened server via the back door | http://polynome.co/infosec/inversoft/elasticsearch/linode/penetration-testing/2016/08/16/hack-that-inversoft.html | |
| 1394166342 | So you want to work in security (but are too lazy to read Parisa's excellent essay) | https://lcamtuf.blogspot.ch/2016/08/so-you-want-to-work-in-security-but-are.html?m=1 | |
| 1386106165 | Reverse Engineering x86 101 | http://howto.hackallthethings.com/2016/08/reverse-engineering-x86-101.html | |
| 1387765922 | | http://darksim905.com/~sim/reverse-engineering-notes.txt | |
| 1390056017 | | https://theitgeekchronicles.files.wordpress.com/2012/05/scapyguide1.pdf | |
| 112767402 | Security News | http://www.morningstarsecurity.com/news | |
| 1390252630 | "A small summary about the @SpamAndHex @defcon CTF adventure. Man vs. machine in security. https | https://twitter.com/defcon/sta |
When you try to remove the docker image with the following command
docker rmi 6795374be8c1
Sometimes you might be facing below error:
Error response from daemon: conflict: unable to delete 6795374be8c1 (cannot be forced) - image has dependent child images
Below is the Docker command line used to find the dependent child images
São utilizados 3 conceitos no dojo:
| apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing \ | |
| x11vnc |
| <?php | |
| $posts = get_posts( array( | |
| 'post_type' => 'attachment', | |
| 'post_mime_type' => 'image', | |
| 'posts_per_page' => -1 | |
| ) ); | |
| foreach ($posts as $key => $value) { | |
| $post_id = wp_insert_post( array( | |
| 'post_type' => 'new_post_type' |
| ### KERNEL TUNING ### | |
| # Increase size of file handles and inode cache | |
| fs.file-max = 2097152 | |
| # Do less swapping | |
| vm.swappiness = 10 | |
| vm.dirty_ratio = 60 | |
| vm.dirty_background_ratio = 2 |
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.
Thanks to /u/zpoo32 for reporting several issues in this list!